| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/browser/extensions/extension_devtools_bridge.h" | 5 #include "chrome/browser/extensions/extension_devtools_bridge.h" |
| 6 | 6 |
| 7 #include "base/json/json_reader.h" | 7 #include "base/json/json_reader.h" |
| 8 #include "base/json/json_writer.h" | 8 #include "base/json/json_writer.h" |
| 9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
| 10 #include "base/stringprintf.h" | 10 #include "base/stringprintf.h" |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 extensions::ExtensionSystem::Get(profile_)->event_router()-> | 129 extensions::ExtensionSystem::Get(profile_)->event_router()-> |
| 130 DispatchEventToRenderers( | 130 DispatchEventToRenderers( |
| 131 on_page_event_name_, arguments.Pass(), profile_, GURL(), | 131 on_page_event_name_, arguments.Pass(), profile_, GURL(), |
| 132 extensions::EventFilteringInfo()); | 132 extensions::EventFilteringInfo()); |
| 133 } | 133 } |
| 134 | 134 |
| 135 void ExtensionDevToolsBridge::ContentsReplaced(WebContents* new_contents) { | 135 void ExtensionDevToolsBridge::ContentsReplaced(WebContents* new_contents) { |
| 136 // We don't update the tab id as it needs to remain the same so that we can | 136 // We don't update the tab id as it needs to remain the same so that we can |
| 137 // properly unregister. | 137 // properly unregister. |
| 138 } | 138 } |
| 139 |
| 140 void ExtensionDevToolsBridge::ReplacedWithAnotherClient() { |
| 141 } |
| OLD | NEW |