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

Side by Side Diff: third_party/WebKit/WebCore/inspector/InspectorController.idl

Issue 27007: Fix inspector load. This method is called on InspectorController... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | no next file » | 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) 2008 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 /* if ENABLE(DATABASE), there should be a databaseTableNames method. */ 5 /* if ENABLE(DATABASE), there should be a databaseTableNames method. */
6 6
7 module core { 7 module core {
8 interface InspectorController { 8 interface InspectorController {
9 void addSourceToFrame(in unsigned long identifier, in Node frame); 9 void addSourceToFrame(in unsigned long identifier, in Node frame);
10 Node getResourceDocumentNode(in unsigned long identifier); 10 Node getResourceDocumentNode(in unsigned long identifier);
11 void highlightDOMNode(in Node node); 11 void highlightDOMNode(in Node node);
12 void hideDOMNodeHighlight(); 12 void hideDOMNodeHighlight();
13 void loaded(); 13 void loaded();
14 [v8implname=close] void windowUnloading(); 14 [v8implname=close] void windowUnloading();
15 void attach(); 15 void attach();
16 void detach(); 16 void detach();
17 void search(in Node node, in DOMString query); 17 void search(in Node node, in DOMString query);
18 DOMWindow inspectedWindow(); 18 DOMWindow inspectedWindow();
19 DOMString platform(); 19 DOMString platform();
20 DOMString localizedStringsURL(); 20 DOMString localizedStringsURL();
21 DOMString hiddenPanels();
21 [v8implname=clearConsoleMessages] void clearMessages(); 22 [v8implname=clearConsoleMessages] void clearMessages();
22 23
23 /* TODO(ojan): add these. These are in trunk webkit. 24 /* TODO(ojan): add these. These are in trunk webkit.
24 #if ENABLE(DATABASE) 25 #if ENABLE(DATABASE)
25 { "databaseTableNames", databaseTableNames, kJSPropertyAttributeNone }, 26 { "databaseTableNames", databaseTableNames, kJSPropertyAttributeNone },
26 #endif 27 #endif
27 { "moveByUnrestricted", moveByUnrestricted, kJSPropertyAttributeNone }, 28 { "moveByUnrestricted", moveByUnrestricted, kJSPropertyAttributeNone },
28 { "wrapCallback", wrapCallback, kJSPropertyAttributeNone }, 29 { "wrapCallback", wrapCallback, kJSPropertyAttributeNone },
29 { "startDebuggingAndReloadInspectedPage", WebCore::startDebuggingAndRelo adInspectedPage, kJSPropertyAttributeNone }, 30 { "startDebuggingAndReloadInspectedPage", WebCore::startDebuggingAndRelo adInspectedPage, kJSPropertyAttributeNone },
30 { "stopDebugging", WebCore::stopDebugging, kJSPropertyAttributeNone }, 31 { "stopDebugging", WebCore::stopDebugging, kJSPropertyAttributeNone },
31 { "debuggerAttached", WebCore::debuggerAttached, kJSPropertyAttributeNon e }, 32 { "debuggerAttached", WebCore::debuggerAttached, kJSPropertyAttributeNon e },
32 */ 33 */
33 }; 34 };
34 } 35 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698