mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision 176706.
- See crbug.com/167209 for a description of why NSPrincipalClass needs to be specified in helper-Info.plist. git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@987 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
@@ -6,11 +6,13 @@
|
||||
#define CEF_LIBCEF_BROWSER_DEVTOOLS_DELEGATE_H_
|
||||
#pragma once
|
||||
|
||||
#include <map>
|
||||
#include <vector>
|
||||
|
||||
#include "base/basictypes.h"
|
||||
#include "base/compiler_specific.h"
|
||||
#include "base/memory/scoped_ptr.h"
|
||||
#include "content/public/browser/devtools_agent_host.h"
|
||||
#include "content/public/browser/devtools_http_handler.h"
|
||||
#include "content/public/browser/devtools_http_handler_delegate.h"
|
||||
|
||||
@@ -18,6 +20,33 @@ namespace content {
|
||||
class RenderViewHost;
|
||||
}
|
||||
|
||||
class CefDevToolsBindingHandler
|
||||
: public content::DevToolsHttpHandler::DevToolsAgentHostBinding {
|
||||
public:
|
||||
CefDevToolsBindingHandler();
|
||||
|
||||
// DevToolsAgentHostBinding overrides.
|
||||
virtual std::string GetIdentifier(
|
||||
content::DevToolsAgentHost* agent_host) OVERRIDE;
|
||||
virtual content::DevToolsAgentHost* ForIdentifier(
|
||||
const std::string& identifier) OVERRIDE;
|
||||
|
||||
std::string GetIdentifier(content::RenderViewHost* rvh);
|
||||
|
||||
private:
|
||||
void GarbageCollect();
|
||||
|
||||
std::string random_seed_;
|
||||
|
||||
// Map of identifier to DevToolsAgentHost. Keeps the DevToolsAgentHost objects
|
||||
// alive until the associated RVH is disconnected.
|
||||
typedef std::map<std::string, scoped_refptr<content::DevToolsAgentHost> >
|
||||
AgentsMap;
|
||||
AgentsMap agents_map_;
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(CefDevToolsBindingHandler);
|
||||
};
|
||||
|
||||
class CefDevToolsDelegate : public content::DevToolsHttpHandlerDelegate {
|
||||
public:
|
||||
explicit CefDevToolsDelegate(int port);
|
||||
@@ -38,7 +67,7 @@ class CefDevToolsDelegate : public content::DevToolsHttpHandlerDelegate {
|
||||
|
||||
private:
|
||||
content::DevToolsHttpHandler* devtools_http_handler_;
|
||||
scoped_ptr<content::DevToolsHttpHandler::RenderViewHostBinding> binding_;
|
||||
scoped_ptr<CefDevToolsBindingHandler> binding_;
|
||||
|
||||
DISALLOW_COPY_AND_ASSIGN(CefDevToolsDelegate);
|
||||
};
|
||||
|
Reference in New Issue
Block a user