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

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

Issue 11361034: DevTools: [remote debugging] emit Inspector.detached protocol message upon connectin termination. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comment addressed Created 8 years, 1 month 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) 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698