2013-03-27 18:33:00 +04:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Copyright (c) 2013 Adam Roben <adam@roben.org>. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
2013-03-14 17:03:50 +04:00
|
|
|
#include "browser/inspectable_web_contents_impl.h"
|
|
|
|
|
2013-03-27 18:33:00 +04:00
|
|
|
#include "browser/browser_client.h"
|
2013-04-08 21:53:53 +04:00
|
|
|
#include "browser/browser_context.h"
|
2013-03-27 18:33:00 +04:00
|
|
|
#include "browser/browser_main_parts.h"
|
2014-03-04 12:12:02 +04:00
|
|
|
#include "browser/inspectable_web_contents_delegate.h"
|
2013-03-14 17:03:50 +04:00
|
|
|
#include "browser/inspectable_web_contents_view.h"
|
2015-06-25 07:29:34 +03:00
|
|
|
#include "browser/inspectable_web_contents_view_delegate.h"
|
2013-03-14 17:03:50 +04:00
|
|
|
|
2014-07-09 11:34:10 +04:00
|
|
|
#include "base/json/json_reader.h"
|
2015-06-05 06:03:47 +03:00
|
|
|
#include "base/json/json_writer.h"
|
|
|
|
#include "base/metrics/histogram.h"
|
2013-04-08 21:53:53 +04:00
|
|
|
#include "base/prefs/pref_registry_simple.h"
|
|
|
|
#include "base/prefs/pref_service.h"
|
2015-08-06 08:39:23 +03:00
|
|
|
#include "base/prefs/scoped_user_pref_update.h"
|
2016-04-12 10:35:35 +03:00
|
|
|
#include "base/strings/pattern.h"
|
2013-10-07 23:16:49 +04:00
|
|
|
#include "base/strings/stringprintf.h"
|
2013-08-24 00:56:30 +04:00
|
|
|
#include "base/strings/utf_string_conversions.h"
|
2014-07-04 17:34:47 +04:00
|
|
|
#include "base/values.h"
|
2015-06-05 06:20:20 +03:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2014-08-26 11:06:51 +04:00
|
|
|
#include "content/public/browser/host_zoom_map.h"
|
2014-07-09 11:34:10 +04:00
|
|
|
#include "content/public/browser/render_frame_host.h"
|
2013-03-27 19:19:15 +04:00
|
|
|
#include "content/public/browser/render_view_host.h"
|
2015-09-30 13:58:46 +03:00
|
|
|
#include "content/public/common/user_agent.h"
|
2016-03-08 17:28:28 +03:00
|
|
|
#include "ipc/ipc_channel.h"
|
2015-06-05 06:20:20 +03:00
|
|
|
#include "net/http/http_response_headers.h"
|
|
|
|
#include "net/url_request/url_fetcher.h"
|
|
|
|
#include "net/url_request/url_fetcher_response_writer.h"
|
2015-08-04 17:43:59 +03:00
|
|
|
#include "ui/gfx/screen.h"
|
2013-03-27 18:33:00 +04:00
|
|
|
|
2013-03-14 17:03:50 +04:00
|
|
|
namespace brightray {
|
|
|
|
|
2013-04-08 21:53:53 +04:00
|
|
|
namespace {
|
|
|
|
|
2014-08-26 11:06:51 +04:00
|
|
|
const double kPresetZoomFactors[] = { 0.25, 0.333, 0.5, 0.666, 0.75, 0.9, 1.0,
|
|
|
|
1.1, 1.25, 1.5, 1.75, 2.0, 2.5, 3.0, 4.0,
|
|
|
|
5.0 };
|
|
|
|
|
2015-09-02 13:25:59 +03:00
|
|
|
const char kChromeUIDevToolsURL[] =
|
|
|
|
"chrome-devtools://devtools/bundled/inspector.html?"
|
2015-09-30 13:58:46 +03:00
|
|
|
"remoteBase=%s&"
|
2015-09-02 13:25:59 +03:00
|
|
|
"can_dock=%s&"
|
|
|
|
"toolbarColor=rgba(223,223,223,1)&"
|
|
|
|
"textColor=rgba(0,0,0,1)&"
|
|
|
|
"experiments=true";
|
2015-09-30 13:58:46 +03:00
|
|
|
const char kChromeUIDevToolsRemoteFrontendBase[] =
|
|
|
|
"https://chrome-devtools-frontend.appspot.com/";
|
|
|
|
const char kChromeUIDevToolsRemoteFrontendPath[] = "serve_file";
|
2015-09-02 13:25:59 +03:00
|
|
|
|
2014-07-04 17:34:47 +04:00
|
|
|
const char kDevToolsBoundsPref[] = "brightray.devtools.bounds";
|
2015-07-27 17:34:21 +03:00
|
|
|
const char kDevToolsZoomPref[] = "brightray.devtools.zoom";
|
2015-08-06 08:39:23 +03:00
|
|
|
const char kDevToolsPreferences[] = "brightray.devtools.preferences";
|
2013-04-08 21:53:53 +04:00
|
|
|
|
2014-07-09 11:34:10 +04:00
|
|
|
const char kFrontendHostId[] = "id";
|
|
|
|
const char kFrontendHostMethod[] = "method";
|
|
|
|
const char kFrontendHostParams[] = "params";
|
2015-08-07 12:00:49 +03:00
|
|
|
const char kTitleFormat[] = "Developer Tools - %s";
|
2014-07-09 11:34:10 +04:00
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
const char kDevToolsActionTakenHistogram[] = "DevTools.ActionTaken";
|
|
|
|
const int kDevToolsActionTakenBoundary = 100;
|
|
|
|
const char kDevToolsPanelShownHistogram[] = "DevTools.PanelShown";
|
|
|
|
const int kDevToolsPanelShownBoundary = 20;
|
|
|
|
|
2015-06-05 06:58:27 +03:00
|
|
|
const size_t kMaxMessageChunkSize = IPC::Channel::kMaximumMessageSize / 4;
|
|
|
|
|
2014-07-04 17:34:47 +04:00
|
|
|
void RectToDictionary(const gfx::Rect& bounds, base::DictionaryValue* dict) {
|
|
|
|
dict->SetInteger("x", bounds.x());
|
|
|
|
dict->SetInteger("y", bounds.y());
|
|
|
|
dict->SetInteger("width", bounds.width());
|
|
|
|
dict->SetInteger("height", bounds.height());
|
2013-04-08 21:53:53 +04:00
|
|
|
}
|
|
|
|
|
2014-07-04 17:34:47 +04:00
|
|
|
void DictionaryToRect(const base::DictionaryValue& dict, gfx::Rect* bounds) {
|
|
|
|
int x = 0, y = 0, width = 800, height = 600;
|
|
|
|
dict.GetInteger("x", &x);
|
|
|
|
dict.GetInteger("y", &y);
|
|
|
|
dict.GetInteger("width", &width);
|
|
|
|
dict.GetInteger("height", &height);
|
|
|
|
*bounds = gfx::Rect(x, y, width, height);
|
|
|
|
}
|
|
|
|
|
2015-08-04 17:43:59 +03:00
|
|
|
bool IsPointInRect(const gfx::Point& point, const gfx::Rect& rect) {
|
|
|
|
return point.x() > rect.x() && point.x() < (rect.width() + rect.x()) &&
|
|
|
|
point.y() > rect.y() && point.y() < (rect.height() + rect.y());
|
|
|
|
}
|
|
|
|
|
2015-07-27 17:34:21 +03:00
|
|
|
void SetZoomLevelForWebContents(content::WebContents* web_contents,
|
|
|
|
double level) {
|
2014-12-06 01:31:02 +03:00
|
|
|
content::HostZoomMap::SetZoomLevel(web_contents, level);
|
2014-08-26 11:06:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
double GetNextZoomLevel(double level, bool out) {
|
|
|
|
double factor = content::ZoomLevelToZoomFactor(level);
|
|
|
|
size_t size = arraysize(kPresetZoomFactors);
|
|
|
|
for (size_t i = 0; i < size; ++i) {
|
|
|
|
if (!content::ZoomValuesEqual(kPresetZoomFactors[i], factor))
|
|
|
|
continue;
|
|
|
|
if (out && i > 0)
|
|
|
|
return content::ZoomFactorToZoomLevel(kPresetZoomFactors[i - 1]);
|
|
|
|
if (!out && i != size - 1)
|
|
|
|
return content::ZoomFactorToZoomLevel(kPresetZoomFactors[i + 1]);
|
|
|
|
}
|
|
|
|
return level;
|
|
|
|
}
|
|
|
|
|
2015-09-30 13:58:46 +03:00
|
|
|
GURL GetRemoteBaseURL() {
|
|
|
|
return GURL(base::StringPrintf(
|
|
|
|
"%s%s/%s/",
|
|
|
|
kChromeUIDevToolsRemoteFrontendBase,
|
|
|
|
kChromeUIDevToolsRemoteFrontendPath,
|
|
|
|
content::GetWebKitRevision().c_str()));
|
|
|
|
}
|
|
|
|
|
2016-04-19 15:43:08 +03:00
|
|
|
GURL GetDevToolsURL(
|
|
|
|
bool can_dock,
|
|
|
|
const std::string& dock_state) {
|
|
|
|
auto url_string =
|
|
|
|
base::StringPrintf(kChromeUIDevToolsURL,
|
|
|
|
GetRemoteBaseURL().spec().c_str(),
|
|
|
|
can_dock ? "true" : "");
|
|
|
|
if (!dock_state.empty())
|
|
|
|
url_string += "&settings={\"currentDockState\":\"\\\"" + dock_state + "\\\"\"}&";
|
|
|
|
return GURL(url_string);
|
|
|
|
}
|
|
|
|
|
2015-06-05 06:20:20 +03:00
|
|
|
// ResponseWriter -------------------------------------------------------------
|
|
|
|
|
|
|
|
class ResponseWriter : public net::URLFetcherResponseWriter {
|
|
|
|
public:
|
|
|
|
ResponseWriter(base::WeakPtr<InspectableWebContentsImpl> bindings, int stream_id);
|
|
|
|
~ResponseWriter() override;
|
|
|
|
|
|
|
|
// URLFetcherResponseWriter overrides:
|
|
|
|
int Initialize(const net::CompletionCallback& callback) override;
|
|
|
|
int Write(net::IOBuffer* buffer,
|
|
|
|
int num_bytes,
|
|
|
|
const net::CompletionCallback& callback) override;
|
|
|
|
int Finish(const net::CompletionCallback& callback) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
base::WeakPtr<InspectableWebContentsImpl> bindings_;
|
|
|
|
int stream_id_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(ResponseWriter);
|
|
|
|
};
|
|
|
|
|
|
|
|
ResponseWriter::ResponseWriter(base::WeakPtr<InspectableWebContentsImpl> bindings,
|
|
|
|
int stream_id)
|
|
|
|
: bindings_(bindings),
|
|
|
|
stream_id_(stream_id) {
|
|
|
|
}
|
|
|
|
|
|
|
|
ResponseWriter::~ResponseWriter() {
|
|
|
|
}
|
|
|
|
|
|
|
|
int ResponseWriter::Initialize(const net::CompletionCallback& callback) {
|
|
|
|
return net::OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ResponseWriter::Write(net::IOBuffer* buffer,
|
|
|
|
int num_bytes,
|
|
|
|
const net::CompletionCallback& callback) {
|
|
|
|
base::FundamentalValue* id = new base::FundamentalValue(stream_id_);
|
|
|
|
base::StringValue* chunk =
|
|
|
|
new base::StringValue(std::string(buffer->data(), num_bytes));
|
|
|
|
|
|
|
|
content::BrowserThread::PostTask(
|
|
|
|
content::BrowserThread::UI, FROM_HERE,
|
|
|
|
base::Bind(&InspectableWebContentsImpl::CallClientFunction,
|
|
|
|
bindings_, "DevToolsAPI.streamWrite",
|
|
|
|
base::Owned(id), base::Owned(chunk), nullptr));
|
|
|
|
return num_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
int ResponseWriter::Finish(const net::CompletionCallback& callback) {
|
|
|
|
return net::OK;
|
|
|
|
}
|
|
|
|
|
2014-07-04 17:34:47 +04:00
|
|
|
} // namespace
|
|
|
|
|
2013-03-14 17:03:50 +04:00
|
|
|
// Implemented separately on each platform.
|
2013-11-18 03:08:34 +04:00
|
|
|
InspectableWebContentsView* CreateInspectableContentsView(
|
|
|
|
InspectableWebContentsImpl* inspectable_web_contents_impl);
|
2013-03-14 17:03:50 +04:00
|
|
|
|
2013-04-08 21:53:53 +04:00
|
|
|
void InspectableWebContentsImpl::RegisterPrefs(PrefRegistrySimple* registry) {
|
2014-07-11 17:55:57 +04:00
|
|
|
auto bounds_dict = make_scoped_ptr(new base::DictionaryValue);
|
2014-07-04 17:34:47 +04:00
|
|
|
RectToDictionary(gfx::Rect(0, 0, 800, 600), bounds_dict.get());
|
|
|
|
registry->RegisterDictionaryPref(kDevToolsBoundsPref, bounds_dict.release());
|
2015-07-27 17:34:21 +03:00
|
|
|
registry->RegisterDoublePref(kDevToolsZoomPref, 0.);
|
2015-08-06 08:39:23 +03:00
|
|
|
registry->RegisterDictionaryPref(kDevToolsPreferences);
|
2013-04-08 21:53:53 +04:00
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
InspectableWebContentsImpl::InspectableWebContentsImpl(
|
|
|
|
content::WebContents* web_contents)
|
2015-06-09 05:41:25 +03:00
|
|
|
: frontend_loaded_(false),
|
2015-06-05 07:24:48 +03:00
|
|
|
can_dock_(true),
|
2015-06-05 06:03:47 +03:00
|
|
|
delegate_(nullptr),
|
2015-06-09 05:41:25 +03:00
|
|
|
web_contents_(web_contents),
|
2015-06-05 06:03:47 +03:00
|
|
|
weak_factory_(this) {
|
2014-07-04 17:34:47 +04:00
|
|
|
auto context = static_cast<BrowserContext*>(web_contents_->GetBrowserContext());
|
2015-07-27 17:34:21 +03:00
|
|
|
pref_service_ = context->prefs();
|
|
|
|
auto bounds_dict = pref_service_->GetDictionary(kDevToolsBoundsPref);
|
2015-08-04 17:43:59 +03:00
|
|
|
if (bounds_dict) {
|
2014-07-04 17:34:47 +04:00
|
|
|
DictionaryToRect(*bounds_dict, &devtools_bounds_);
|
2015-08-04 17:43:59 +03:00
|
|
|
// Sometimes the devtools window is out of screen or has too small size.
|
|
|
|
if (devtools_bounds_.height() < 100 || devtools_bounds_.width() < 100) {
|
|
|
|
devtools_bounds_.set_height(600);
|
|
|
|
devtools_bounds_.set_width(800);
|
|
|
|
}
|
|
|
|
gfx::Rect display = gfx::Screen::GetNativeScreen()
|
|
|
|
->GetDisplayNearestWindow(web_contents->GetNativeView()).bounds();
|
|
|
|
if (!IsPointInRect(devtools_bounds_.origin(), display)) {
|
2015-08-04 17:50:30 +03:00
|
|
|
devtools_bounds_.set_x(display.x() + (display.width() - devtools_bounds_.width()) / 2);
|
|
|
|
devtools_bounds_.set_y(display.y() + (display.height() - devtools_bounds_.height()) / 2);
|
2015-08-04 17:43:59 +03:00
|
|
|
}
|
|
|
|
}
|
2014-07-04 17:34:47 +04:00
|
|
|
|
2013-03-14 17:03:50 +04:00
|
|
|
view_.reset(CreateInspectableContentsView(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
InspectableWebContentsImpl::~InspectableWebContentsImpl() {
|
|
|
|
}
|
|
|
|
|
|
|
|
InspectableWebContentsView* InspectableWebContentsImpl::GetView() const {
|
|
|
|
return view_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
content::WebContents* InspectableWebContentsImpl::GetWebContents() const {
|
|
|
|
return web_contents_.get();
|
|
|
|
}
|
|
|
|
|
2015-06-05 09:33:37 +03:00
|
|
|
content::WebContents* InspectableWebContentsImpl::GetDevToolsWebContents() const {
|
|
|
|
return devtools_web_contents_.get();
|
|
|
|
}
|
|
|
|
|
2015-06-05 07:24:48 +03:00
|
|
|
void InspectableWebContentsImpl::SetDelegate(InspectableWebContentsDelegate* delegate) {
|
|
|
|
delegate_ = delegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
InspectableWebContentsDelegate* InspectableWebContentsImpl::GetDelegate() const {
|
|
|
|
return delegate_;
|
|
|
|
}
|
|
|
|
|
2016-04-19 15:43:08 +03:00
|
|
|
void InspectableWebContentsImpl::SetDockState(const std::string& state) {
|
|
|
|
if (state == "detach") {
|
|
|
|
can_dock_ = false;
|
|
|
|
} else {
|
|
|
|
can_dock_ = true;
|
|
|
|
dock_state_ = state;
|
|
|
|
}
|
2014-11-03 16:32:11 +03:00
|
|
|
}
|
|
|
|
|
2013-03-14 17:03:50 +04:00
|
|
|
void InspectableWebContentsImpl::ShowDevTools() {
|
2014-07-02 12:21:47 +04:00
|
|
|
// Show devtools only after it has done loading, this is to make sure the
|
|
|
|
// SetIsDocked is called *BEFORE* ShowDevTools.
|
2013-03-27 18:33:00 +04:00
|
|
|
if (!devtools_web_contents_) {
|
2013-12-02 21:38:24 +04:00
|
|
|
embedder_message_dispatcher_.reset(
|
2015-06-05 06:03:47 +03:00
|
|
|
DevToolsEmbedderMessageDispatcher::CreateForDevToolsFrontend(this));
|
2013-12-02 21:38:24 +04:00
|
|
|
|
2014-08-31 14:43:01 +04:00
|
|
|
content::WebContents::CreateParams create_params(web_contents_->GetBrowserContext());
|
2013-11-18 03:08:34 +04:00
|
|
|
devtools_web_contents_.reset(content::WebContents::Create(create_params));
|
2013-10-10 22:07:20 +04:00
|
|
|
|
2013-03-27 18:33:00 +04:00
|
|
|
Observe(devtools_web_contents_.get());
|
|
|
|
devtools_web_contents_->SetDelegate(this);
|
|
|
|
|
2014-10-11 12:38:27 +04:00
|
|
|
agent_host_ = content::DevToolsAgentHost::GetOrCreateFor(web_contents_.get());
|
2014-12-06 01:31:02 +03:00
|
|
|
agent_host_->AttachClient(this);
|
2013-03-27 18:33:00 +04:00
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
devtools_web_contents_->GetController().LoadURL(
|
2016-04-19 15:43:08 +03:00
|
|
|
GetDevToolsURL(can_dock_, dock_state_),
|
2013-11-18 03:08:34 +04:00
|
|
|
content::Referrer(),
|
2014-12-06 01:31:02 +03:00
|
|
|
ui::PAGE_TRANSITION_AUTO_TOPLEVEL,
|
2013-11-18 03:08:34 +04:00
|
|
|
std::string());
|
2014-07-02 12:21:47 +04:00
|
|
|
} else {
|
|
|
|
view_->ShowDevTools();
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
2013-03-14 17:03:50 +04:00
|
|
|
}
|
|
|
|
|
2014-03-20 05:26:21 +04:00
|
|
|
void InspectableWebContentsImpl::CloseDevTools() {
|
2014-07-02 12:21:47 +04:00
|
|
|
if (devtools_web_contents_) {
|
2014-03-20 05:26:21 +04:00
|
|
|
view_->CloseDevTools();
|
|
|
|
devtools_web_contents_.reset();
|
2014-07-27 14:44:58 +04:00
|
|
|
web_contents_->Focus();
|
2014-03-20 05:26:21 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-09 16:34:44 +04:00
|
|
|
bool InspectableWebContentsImpl::IsDevToolsViewShowing() {
|
|
|
|
return devtools_web_contents_ && view_->IsDevToolsViewShowing();
|
2013-11-05 06:29:53 +04:00
|
|
|
}
|
|
|
|
|
2015-05-18 16:56:03 +03:00
|
|
|
void InspectableWebContentsImpl::AttachTo(const scoped_refptr<content::DevToolsAgentHost>& host) {
|
|
|
|
if (agent_host_.get())
|
|
|
|
Detach();
|
|
|
|
agent_host_ = host;
|
|
|
|
agent_host_->AttachClient(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::Detach() {
|
2015-06-08 18:01:07 +03:00
|
|
|
if (agent_host_.get())
|
|
|
|
agent_host_->DetachClient();
|
2015-05-18 16:56:03 +03:00
|
|
|
agent_host_ = nullptr;
|
|
|
|
}
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
void InspectableWebContentsImpl::CallClientFunction(const std::string& function_name,
|
|
|
|
const base::Value* arg1,
|
|
|
|
const base::Value* arg2,
|
|
|
|
const base::Value* arg3) {
|
2015-09-17 10:00:14 +03:00
|
|
|
if (!devtools_web_contents_)
|
|
|
|
return;
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
std::string javascript = function_name + "(";
|
|
|
|
if (arg1) {
|
|
|
|
std::string json;
|
2015-09-02 10:16:34 +03:00
|
|
|
base::JSONWriter::Write(*arg1, &json);
|
2015-06-05 06:03:47 +03:00
|
|
|
javascript.append(json);
|
|
|
|
if (arg2) {
|
2015-09-02 10:16:34 +03:00
|
|
|
base::JSONWriter::Write(*arg2, &json);
|
2015-06-05 06:03:47 +03:00
|
|
|
javascript.append(", ").append(json);
|
|
|
|
if (arg3) {
|
2015-09-02 10:16:34 +03:00
|
|
|
base::JSONWriter::Write(*arg3, &json);
|
2015-06-05 06:03:47 +03:00
|
|
|
javascript.append(", ").append(json);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
javascript.append(");");
|
|
|
|
devtools_web_contents_->GetMainFrame()->ExecuteJavaScript(
|
|
|
|
base::UTF8ToUTF16(javascript));
|
|
|
|
}
|
|
|
|
|
2014-07-04 17:34:47 +04:00
|
|
|
gfx::Rect InspectableWebContentsImpl::GetDevToolsBounds() const {
|
|
|
|
return devtools_bounds_;
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::SaveDevToolsBounds(const gfx::Rect& bounds) {
|
|
|
|
base::DictionaryValue bounds_dict;
|
|
|
|
RectToDictionary(bounds, &bounds_dict);
|
2015-07-27 17:34:21 +03:00
|
|
|
pref_service_->Set(kDevToolsBoundsPref, bounds_dict);
|
2014-07-04 17:34:47 +04:00
|
|
|
devtools_bounds_ = bounds;
|
|
|
|
}
|
|
|
|
|
2015-07-27 17:34:21 +03:00
|
|
|
double InspectableWebContentsImpl::GetDevToolsZoomLevel() const {
|
|
|
|
return pref_service_->GetDouble(kDevToolsZoomPref);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::UpdateDevToolsZoomLevel(double level) {
|
|
|
|
pref_service_->SetDouble(kDevToolsZoomPref, level);
|
|
|
|
}
|
|
|
|
|
2013-03-27 18:33:00 +04:00
|
|
|
void InspectableWebContentsImpl::ActivateWindow() {
|
2015-07-27 17:34:21 +03:00
|
|
|
// Set the zoom level.
|
|
|
|
SetZoomLevelForWebContents(GetDevToolsWebContents(),
|
|
|
|
GetDevToolsZoomLevel());
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::CloseWindow() {
|
2015-06-05 09:33:37 +03:00
|
|
|
GetDevToolsWebContents()->DispatchBeforeUnload(false);
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
void InspectableWebContentsImpl::LoadCompleted() {
|
2015-06-05 06:58:27 +03:00
|
|
|
frontend_loaded_ = true;
|
2015-06-05 07:10:01 +03:00
|
|
|
view_->ShowDevTools();
|
|
|
|
|
|
|
|
// If the devtools can dock, "SetIsDocked" will be called by devtools itself.
|
|
|
|
if (!can_dock_)
|
|
|
|
SetIsDocked(DispatchCallback(), false);
|
2016-05-12 16:46:13 +03:00
|
|
|
|
|
|
|
if (view_->GetDelegate())
|
|
|
|
view_->GetDelegate()->DevToolsOpened();
|
2015-06-05 06:03:47 +03:00
|
|
|
}
|
|
|
|
|
2014-09-01 15:15:07 +04:00
|
|
|
void InspectableWebContentsImpl::SetInspectedPageBounds(const gfx::Rect& rect) {
|
|
|
|
DevToolsContentsResizingStrategy strategy(rect);
|
2014-07-02 12:21:47 +04:00
|
|
|
if (contents_resizing_strategy_.Equals(strategy))
|
|
|
|
return;
|
|
|
|
|
|
|
|
contents_resizing_strategy_.CopyFrom(strategy);
|
|
|
|
view_->SetContentsResizingStrategy(contents_resizing_strategy_);
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2014-07-08 11:58:38 +04:00
|
|
|
void InspectableWebContentsImpl::InspectElementCompleted() {
|
|
|
|
}
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
void InspectableWebContentsImpl::InspectedURLChanged(const std::string& url) {
|
2015-08-07 12:00:49 +03:00
|
|
|
view_->SetTitle(base::UTF8ToUTF16(base::StringPrintf(kTitleFormat,
|
|
|
|
url.c_str())));
|
2015-06-05 06:03:47 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::LoadNetworkResource(
|
|
|
|
const DispatchCallback& callback,
|
|
|
|
const std::string& url,
|
|
|
|
const std::string& headers,
|
|
|
|
int stream_id) {
|
2015-06-05 06:20:20 +03:00
|
|
|
GURL gurl(url);
|
|
|
|
if (!gurl.is_valid()) {
|
|
|
|
base::DictionaryValue response;
|
|
|
|
response.SetInteger("statusCode", 404);
|
|
|
|
callback.Run(&response);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto browser_context = static_cast<BrowserContext*>(devtools_web_contents_->GetBrowserContext());
|
|
|
|
|
|
|
|
net::URLFetcher* fetcher =
|
2015-07-23 10:00:14 +03:00
|
|
|
(net::URLFetcher::Create(gurl, net::URLFetcher::GET, this)).release();
|
2015-06-05 06:20:20 +03:00
|
|
|
pending_requests_[fetcher] = callback;
|
|
|
|
fetcher->SetRequestContext(browser_context->url_request_context_getter());
|
|
|
|
fetcher->SetExtraRequestHeaders(headers);
|
|
|
|
fetcher->SaveResponseWithWriter(scoped_ptr<net::URLFetcherResponseWriter>(
|
|
|
|
new ResponseWriter(weak_factory_.GetWeakPtr(), stream_id)));
|
|
|
|
fetcher->Start();
|
2014-07-02 12:21:47 +04:00
|
|
|
}
|
2013-03-27 19:19:15 +04:00
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
void InspectableWebContentsImpl::SetIsDocked(const DispatchCallback& callback,
|
|
|
|
bool docked) {
|
2014-07-02 12:21:47 +04:00
|
|
|
view_->SetIsDocked(docked);
|
2015-06-05 06:03:47 +03:00
|
|
|
if (!callback.is_null())
|
|
|
|
callback.Run(nullptr);
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::OpenInNewTab(const std::string& url) {
|
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
void InspectableWebContentsImpl::SaveToFile(
|
|
|
|
const std::string& url, const std::string& content, bool save_as) {
|
2014-04-04 20:10:09 +04:00
|
|
|
if (delegate_)
|
|
|
|
delegate_->DevToolsSaveToFile(url, content, save_as);
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
void InspectableWebContentsImpl::AppendToFile(
|
|
|
|
const std::string& url, const std::string& content) {
|
2014-04-04 20:10:09 +04:00
|
|
|
if (delegate_)
|
|
|
|
delegate_->DevToolsAppendToFile(url, content);
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::RequestFileSystems() {
|
2016-03-15 05:23:40 +03:00
|
|
|
if (delegate_)
|
|
|
|
delegate_->DevToolsRequestFileSystems();
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2016-03-15 05:23:40 +03:00
|
|
|
void InspectableWebContentsImpl::AddFileSystem(
|
|
|
|
const std::string& file_system_path) {
|
2015-06-04 19:51:23 +03:00
|
|
|
if (delegate_)
|
2016-03-15 05:23:40 +03:00
|
|
|
delegate_->DevToolsAddFileSystem(
|
|
|
|
base::FilePath::FromUTF8Unsafe(file_system_path));
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
void InspectableWebContentsImpl::RemoveFileSystem(
|
|
|
|
const std::string& file_system_path) {
|
2015-06-04 19:51:23 +03:00
|
|
|
if (delegate_)
|
2015-07-24 12:43:36 +03:00
|
|
|
delegate_->DevToolsRemoveFileSystem(
|
|
|
|
base::FilePath::FromUTF8Unsafe(file_system_path));
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2014-07-08 11:58:38 +04:00
|
|
|
void InspectableWebContentsImpl::UpgradeDraggedFileSystemPermissions(
|
|
|
|
const std::string& file_system_url) {
|
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
void InspectableWebContentsImpl::IndexPath(
|
|
|
|
int request_id, const std::string& file_system_path) {
|
2016-05-07 02:06:00 +03:00
|
|
|
if (delegate_)
|
|
|
|
delegate_->DevToolsIndexPath(request_id, file_system_path);
|
2013-10-07 23:29:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::StopIndexing(int request_id) {
|
2016-05-07 02:06:00 +03:00
|
|
|
if (delegate_)
|
|
|
|
delegate_->DevToolsStopIndexing(request_id);
|
2013-10-07 23:29:17 +04:00
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
void InspectableWebContentsImpl::SearchInPath(
|
|
|
|
int request_id,
|
|
|
|
const std::string& file_system_path,
|
|
|
|
const std::string& query) {
|
2016-05-07 02:06:00 +03:00
|
|
|
if (delegate_)
|
|
|
|
delegate_->DevToolsSearchInPath(request_id, file_system_path, query);
|
2013-10-07 23:29:17 +04:00
|
|
|
}
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
void InspectableWebContentsImpl::SetWhitelistedShortcuts(const std::string& message) {
|
|
|
|
}
|
|
|
|
|
2014-07-08 11:58:38 +04:00
|
|
|
void InspectableWebContentsImpl::ZoomIn() {
|
2015-07-27 17:34:21 +03:00
|
|
|
double new_level = GetNextZoomLevel(GetDevToolsZoomLevel(), false);
|
|
|
|
SetZoomLevelForWebContents(GetDevToolsWebContents(), new_level);
|
|
|
|
UpdateDevToolsZoomLevel(new_level);
|
2014-07-08 11:58:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::ZoomOut() {
|
2015-07-27 17:34:21 +03:00
|
|
|
double new_level = GetNextZoomLevel(GetDevToolsZoomLevel(), true);
|
|
|
|
SetZoomLevelForWebContents(GetDevToolsWebContents(), new_level);
|
|
|
|
UpdateDevToolsZoomLevel(new_level);
|
2014-07-08 11:58:38 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::ResetZoom() {
|
2015-06-05 09:33:37 +03:00
|
|
|
SetZoomLevelForWebContents(GetDevToolsWebContents(), 0.);
|
2015-07-27 17:34:21 +03:00
|
|
|
UpdateDevToolsZoomLevel(0.);
|
2014-07-08 11:58:38 +04:00
|
|
|
}
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
void InspectableWebContentsImpl::SetDevicesUpdatesEnabled(bool enabled) {
|
|
|
|
}
|
|
|
|
|
2016-03-08 17:28:28 +03:00
|
|
|
void InspectableWebContentsImpl::DispatchProtocolMessageFromDevToolsFrontend(
|
|
|
|
const std::string& message) {
|
2016-04-12 10:35:35 +03:00
|
|
|
// If the devtools wants to reload the page, hijack the message and handle it
|
|
|
|
// to the delegate.
|
|
|
|
if (base::MatchPattern(message, "{\"id\":*,"
|
|
|
|
"\"method\":\"Page.reload\","
|
|
|
|
"\"params\":*}")) {
|
|
|
|
if (delegate_)
|
|
|
|
delegate_->DevToolsReloadPage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
if (agent_host_.get())
|
|
|
|
agent_host_->DispatchProtocolMessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::RecordActionUMA(const std::string& name, int action) {
|
|
|
|
if (name == kDevToolsActionTakenHistogram)
|
|
|
|
UMA_HISTOGRAM_ENUMERATION(name, action, kDevToolsActionTakenBoundary);
|
|
|
|
else if (name == kDevToolsPanelShownHistogram)
|
|
|
|
UMA_HISTOGRAM_ENUMERATION(name, action, kDevToolsPanelShownBoundary);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::SendJsonRequest(const DispatchCallback& callback,
|
|
|
|
const std::string& browser_id,
|
|
|
|
const std::string& url) {
|
|
|
|
callback.Run(nullptr);
|
|
|
|
}
|
|
|
|
|
2015-08-06 08:39:23 +03:00
|
|
|
void InspectableWebContentsImpl::GetPreferences(
|
|
|
|
const DispatchCallback& callback) {
|
|
|
|
const base::DictionaryValue* prefs = pref_service_->GetDictionary(
|
|
|
|
kDevToolsPreferences);
|
|
|
|
callback.Run(prefs);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::SetPreference(const std::string& name,
|
|
|
|
const std::string& value) {
|
|
|
|
DictionaryPrefUpdate update(pref_service_, kDevToolsPreferences);
|
|
|
|
update.Get()->SetStringWithoutPathExpansion(name, value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::RemovePreference(const std::string& name) {
|
|
|
|
DictionaryPrefUpdate update(pref_service_, kDevToolsPreferences);
|
|
|
|
update.Get()->RemoveWithoutPathExpansion(name, nullptr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void InspectableWebContentsImpl::ClearPreferences() {
|
|
|
|
DictionaryPrefUpdate update(pref_service_, kDevToolsPreferences);
|
|
|
|
update.Get()->Clear();
|
|
|
|
}
|
|
|
|
|
2014-10-11 12:38:27 +04:00
|
|
|
void InspectableWebContentsImpl::HandleMessageFromDevToolsFrontend(const std::string& message) {
|
2014-07-09 11:34:10 +04:00
|
|
|
std::string method;
|
2015-06-05 06:03:47 +03:00
|
|
|
base::ListValue empty_params;
|
|
|
|
base::ListValue* params = &empty_params;
|
|
|
|
|
2015-06-05 07:24:48 +03:00
|
|
|
base::DictionaryValue* dict = nullptr;
|
2015-06-05 06:03:47 +03:00
|
|
|
scoped_ptr<base::Value> parsed_message(base::JSONReader::Read(message));
|
|
|
|
if (!parsed_message ||
|
|
|
|
!parsed_message->GetAsDictionary(&dict) ||
|
|
|
|
!dict->GetString(kFrontendHostMethod, &method) ||
|
|
|
|
(dict->HasKey(kFrontendHostParams) &&
|
|
|
|
!dict->GetList(kFrontendHostParams, ¶ms))) {
|
2014-07-09 11:34:10 +04:00
|
|
|
LOG(ERROR) << "Invalid message was sent to embedder: " << message;
|
|
|
|
return;
|
|
|
|
}
|
2015-06-05 06:03:47 +03:00
|
|
|
int id = 0;
|
|
|
|
dict->GetInteger(kFrontendHostId, &id);
|
|
|
|
embedder_message_dispatcher_->Dispatch(
|
|
|
|
base::Bind(&InspectableWebContentsImpl::SendMessageAck,
|
|
|
|
weak_factory_.GetWeakPtr(),
|
|
|
|
id),
|
|
|
|
method,
|
|
|
|
params);
|
2013-12-02 21:38:24 +04:00
|
|
|
}
|
|
|
|
|
2014-12-06 01:31:02 +03:00
|
|
|
void InspectableWebContentsImpl::DispatchProtocolMessage(
|
|
|
|
content::DevToolsAgentHost* agent_host, const std::string& message) {
|
2015-06-05 06:58:27 +03:00
|
|
|
if (!frontend_loaded_)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (message.length() < kMaxMessageChunkSize) {
|
|
|
|
base::string16 javascript = base::UTF8ToUTF16(
|
|
|
|
"DevToolsAPI.dispatchMessage(" + message + ");");
|
|
|
|
devtools_web_contents_->GetMainFrame()->ExecuteJavaScript(javascript);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
base::FundamentalValue total_size(static_cast<int>(message.length()));
|
|
|
|
for (size_t pos = 0; pos < message.length(); pos += kMaxMessageChunkSize) {
|
|
|
|
base::StringValue message_value(message.substr(pos, kMaxMessageChunkSize));
|
|
|
|
CallClientFunction("DevToolsAPI.dispatchMessageChunk",
|
2015-06-05 07:24:48 +03:00
|
|
|
&message_value, pos ? nullptr : &total_size, nullptr);
|
2015-06-05 06:58:27 +03:00
|
|
|
}
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2014-12-06 01:31:02 +03:00
|
|
|
void InspectableWebContentsImpl::AgentHostClosed(
|
|
|
|
content::DevToolsAgentHost* agent_host, bool replaced) {
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2016-03-08 09:18:16 +03:00
|
|
|
void InspectableWebContentsImpl::RenderFrameHostChanged(
|
2015-04-21 13:54:57 +03:00
|
|
|
content::RenderFrameHost* old_host,
|
2015-03-09 05:13:17 +03:00
|
|
|
content::RenderFrameHost* new_host) {
|
|
|
|
if (new_host->GetParent())
|
|
|
|
return;
|
2016-03-08 17:28:28 +03:00
|
|
|
frontend_host_.reset(content::DevToolsFrontendHost::Create(
|
2016-03-09 12:47:11 +03:00
|
|
|
new_host,
|
2016-03-08 17:28:28 +03:00
|
|
|
base::Bind(&InspectableWebContentsImpl::HandleMessageFromDevToolsFrontend,
|
|
|
|
base::Unretained(this))));
|
2014-10-11 15:00:30 +04:00
|
|
|
}
|
|
|
|
|
2014-07-27 14:27:19 +04:00
|
|
|
void InspectableWebContentsImpl::WebContentsDestroyed() {
|
2015-06-05 07:24:48 +03:00
|
|
|
frontend_loaded_ = false;
|
2013-03-27 18:33:00 +04:00
|
|
|
Observe(nullptr);
|
2015-06-05 06:58:27 +03:00
|
|
|
Detach();
|
2015-06-05 06:20:20 +03:00
|
|
|
|
|
|
|
for (const auto& pair : pending_requests_)
|
|
|
|
delete pair.first;
|
2016-05-12 16:46:13 +03:00
|
|
|
|
|
|
|
if (view_ && view_->GetDelegate())
|
|
|
|
view_->GetDelegate()->DevToolsClosed();
|
2013-03-27 18:33:00 +04:00
|
|
|
}
|
|
|
|
|
2014-08-28 08:53:35 +04:00
|
|
|
bool InspectableWebContentsImpl::AddMessageToConsole(
|
|
|
|
content::WebContents* source,
|
2016-03-08 08:38:56 +03:00
|
|
|
int32_t level,
|
2014-08-28 08:53:35 +04:00
|
|
|
const base::string16& message,
|
2016-03-08 08:38:56 +03:00
|
|
|
int32_t line_no,
|
2014-08-28 08:53:35 +04:00
|
|
|
const base::string16& source_id) {
|
|
|
|
logging::LogMessage("CONSOLE", line_no, level).stream() << "\"" <<
|
|
|
|
message << "\", source: " << source_id << " (" << line_no << ")";
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-10-27 11:42:54 +03:00
|
|
|
bool InspectableWebContentsImpl::ShouldCreateWebContents(
|
|
|
|
content::WebContents* web_contents,
|
2016-03-08 09:18:16 +03:00
|
|
|
int32_t route_id,
|
|
|
|
int32_t main_frame_route_id,
|
|
|
|
int32_t main_frame_widget_route_id,
|
2014-10-27 11:42:54 +03:00
|
|
|
WindowContainerType window_container_type,
|
2015-09-02 10:16:34 +03:00
|
|
|
const std::string& frame_name,
|
2014-10-27 11:42:54 +03:00
|
|
|
const GURL& target_url,
|
|
|
|
const std::string& partition_id,
|
|
|
|
content::SessionStorageNamespace* session_storage_namespace) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
void InspectableWebContentsImpl::HandleKeyboardEvent(
|
|
|
|
content::WebContents* source,
|
|
|
|
const content::NativeWebKeyboardEvent& event) {
|
2013-03-27 18:33:00 +04:00
|
|
|
auto delegate = web_contents_->GetDelegate();
|
|
|
|
if (delegate)
|
|
|
|
delegate->HandleKeyboardEvent(source, event);
|
|
|
|
}
|
|
|
|
|
2014-07-13 06:08:28 +04:00
|
|
|
void InspectableWebContentsImpl::CloseContents(content::WebContents* source) {
|
|
|
|
CloseDevTools();
|
|
|
|
}
|
|
|
|
|
2015-07-23 10:00:14 +03:00
|
|
|
void InspectableWebContentsImpl::OnWebContentsFocused() {
|
2015-09-15 06:24:35 +03:00
|
|
|
#if defined(TOOLKIT_VIEWS)
|
2015-06-25 07:29:34 +03:00
|
|
|
if (view_->GetDelegate())
|
|
|
|
view_->GetDelegate()->DevToolsFocused();
|
2015-09-15 06:24:35 +03:00
|
|
|
#endif
|
2015-06-05 06:03:47 +03:00
|
|
|
}
|
|
|
|
|
2016-03-09 08:55:46 +03:00
|
|
|
void InspectableWebContentsImpl::DidStartNavigationToPendingEntry(
|
|
|
|
const GURL& url,
|
|
|
|
content::NavigationController::ReloadType reload_type) {
|
|
|
|
frontend_host_.reset(
|
|
|
|
content::DevToolsFrontendHost::Create(
|
|
|
|
web_contents()->GetMainFrame(),
|
|
|
|
base::Bind(&InspectableWebContentsImpl::HandleMessageFromDevToolsFrontend,
|
|
|
|
base::Unretained(this))));
|
|
|
|
}
|
|
|
|
|
2015-06-05 06:20:20 +03:00
|
|
|
void InspectableWebContentsImpl::OnURLFetchComplete(const net::URLFetcher* source) {
|
|
|
|
DCHECK(source);
|
|
|
|
PendingRequestsMap::iterator it = pending_requests_.find(source);
|
|
|
|
DCHECK(it != pending_requests_.end());
|
|
|
|
|
|
|
|
base::DictionaryValue response;
|
|
|
|
base::DictionaryValue* headers = new base::DictionaryValue();
|
|
|
|
net::HttpResponseHeaders* rh = source->GetResponseHeaders();
|
|
|
|
response.SetInteger("statusCode", rh ? rh->response_code() : 200);
|
|
|
|
response.Set("headers", headers);
|
|
|
|
|
2015-06-05 07:24:48 +03:00
|
|
|
void* iterator = nullptr;
|
2015-06-05 06:20:20 +03:00
|
|
|
std::string name;
|
|
|
|
std::string value;
|
|
|
|
while (rh && rh->EnumerateHeaderLines(&iterator, &name, &value))
|
|
|
|
headers->SetString(name, value);
|
|
|
|
|
|
|
|
it->second.Run(&response);
|
|
|
|
pending_requests_.erase(it);
|
|
|
|
delete source;
|
|
|
|
}
|
|
|
|
|
2015-06-05 06:03:47 +03:00
|
|
|
void InspectableWebContentsImpl::SendMessageAck(int request_id,
|
|
|
|
const base::Value* arg) {
|
|
|
|
base::FundamentalValue id_value(request_id);
|
|
|
|
CallClientFunction("DevToolsAPI.embedderMessageAck",
|
|
|
|
&id_value, arg, nullptr);
|
|
|
|
}
|
|
|
|
|
2013-11-18 03:08:34 +04:00
|
|
|
} // namespace brightray
|