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

Side by Side Diff: chrome/test/data/extensions/api_test/debugger/background.js

Issue 12218134: Introduce intercepting and handling devtools messages in the renderer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 10 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
« no previous file with comments | « no previous file | content/browser/devtools/devtools_browser_target.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 var pass = chrome.test.callbackPass; 5 var pass = chrome.test.callbackPass;
6 var fail = chrome.test.callbackFail; 6 var fail = chrome.test.callbackFail;
7 7
8 var tabId; 8 var tabId;
9 var debuggee; 9 var debuggee;
10 var protocolVersion = "1.0"; 10 var protocolVersion = "1.0";
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 function sendCommand() { 49 function sendCommand() {
50 function onResponse() { 50 function onResponse() {
51 if (chrome.runtime.lastError && 51 if (chrome.runtime.lastError &&
52 chrome.runtime.lastError.message.indexOf("invalidMethod") != -1) 52 chrome.runtime.lastError.message.indexOf("invalidMethod") != -1)
53 chrome.test.succeed(); 53 chrome.test.succeed();
54 else 54 else
55 chrome.test.fail(); 55 chrome.test.fail();
56 } 56 }
57 chrome.debugger.sendCommand(debuggee, 57 chrome.debugger.sendCommand(debuggee,
58 "invalidMethod", 58 "DOM.invalidMethod",
59 null, 59 null,
60 onResponse); 60 onResponse);
61 }, 61 },
62 62
63 function detach() { 63 function detach() {
64 chrome.debugger.detach(debuggee, pass()); 64 chrome.debugger.detach(debuggee, pass());
65 }, 65 },
66 66
67 function sendCommandAfterDetach() { 67 function sendCommandAfterDetach() {
68 chrome.debugger.sendCommand(debuggee, "Foo", null, 68 chrome.debugger.sendCommand(debuggee, "Foo", null,
(...skipping 25 matching lines...) Expand all
94 function attachToWebUI() { 94 function attachToWebUI() {
95 chrome.tabs.create({url:"chrome://version"}, function(tab) { 95 chrome.tabs.create({url:"chrome://version"}, function(tab) {
96 var debuggee = {tabId: tab.id}; 96 var debuggee = {tabId: tab.id};
97 chrome.debugger.attach(debuggee, protocolVersion, 97 chrome.debugger.attach(debuggee, protocolVersion,
98 fail("Can not attach to the page with the \"chrome://\" scheme.")); 98 fail("Can not attach to the page with the \"chrome://\" scheme."));
99 chrome.tabs.remove(tab.id); 99 chrome.tabs.remove(tab.id);
100 }); 100 });
101 } 101 }
102 102
103 ]); 103 ]);
OLDNEW
« no previous file with comments | « no previous file | content/browser/devtools/devtools_browser_target.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698