b2a79856ef
This class can be used to create a content::WebContents that can be inspected by the Chrome Dev Tools. This requires embedding applications to copy content_shell.pak into their resource bundle. Right now the dev tools are always docked to the bottom of the view; we don't yet support undocking or changing the docked side. Fixes #1.
33 lines
940 B
C++
33 lines
940 B
C++
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
#include "browser/browser_main_parts.h"
|
|
|
|
#include "browser/browser_context.h"
|
|
#include "browser/devtools_delegate.h"
|
|
|
|
#include "content/public/browser/devtools_http_handler.h"
|
|
#include "net/base/tcp_listen_socket.h"
|
|
|
|
namespace brightray {
|
|
|
|
BrowserMainParts::BrowserMainParts() {
|
|
}
|
|
|
|
BrowserMainParts::~BrowserMainParts() {
|
|
devtools_http_handler_->Stop();
|
|
devtools_http_handler_ = nullptr;
|
|
}
|
|
|
|
void BrowserMainParts::PreMainMessageLoopRun() {
|
|
browser_context_.reset(new BrowserContext);
|
|
|
|
// These two objects are owned by devtools_http_handler_.
|
|
auto delegate = new DevToolsDelegate;
|
|
auto factory = new net::TCPListenSocketFactory("127.0.0.1", 0);
|
|
|
|
devtools_http_handler_ = content::DevToolsHttpHandler::Start(factory, std::string(), delegate);
|
|
}
|
|
|
|
}
|