| OLD | NEW |
| 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 } |
| OLD | NEW |