Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(156)

Side by Side Diff: chrome/browser/extensions/extension_devtools_bridge.h

Issue 9667015: Remove ExtensionMessageService's legacy support for devtools. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
12 #include "chrome/browser/extensions/extension_devtools_manager.h" 12 #include "chrome/browser/extensions/extension_devtools_manager.h"
13 #include "chrome/browser/extensions/extension_message_service.h"
14 #include "content/public/browser/devtools_client_host.h" 13 #include "content/public/browser/devtools_client_host.h"
15 14
16 class Profile; 15 class Profile;
17 16
18 // This class is a DevToolsClientHost that fires extension events. 17 // This class is a DevToolsClientHost that fires extension events.
19 class ExtensionDevToolsBridge : public content::DevToolsClientHost { 18 class ExtensionDevToolsBridge : public content::DevToolsClientHost {
20 public: 19 public:
21 ExtensionDevToolsBridge(int tab_id, Profile* profile); 20 ExtensionDevToolsBridge(int tab_id, Profile* profile);
22 virtual ~ExtensionDevToolsBridge(); 21 virtual ~ExtensionDevToolsBridge();
23 22
(...skipping 22 matching lines...) Expand all
46 45
47 // The names of the events fired at extensions depend on the tab id, 46 // The names of the events fired at extensions depend on the tab id,
48 // so we store the various event names in each bridge. 47 // so we store the various event names in each bridge.
49 const std::string on_page_event_name_; 48 const std::string on_page_event_name_;
50 const std::string on_tab_close_event_name_; 49 const std::string on_tab_close_event_name_;
51 50
52 DISALLOW_COPY_AND_ASSIGN(ExtensionDevToolsBridge); 51 DISALLOW_COPY_AND_ASSIGN(ExtensionDevToolsBridge);
53 }; 52 };
54 53
55 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_ 54 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_DEVTOOLS_BRIDGE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698