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

Side by Side Diff: inspector/InspectorBackend.idl

Issue 542055: DevTools: injected script per context(WebCore part) (Closed) Base URL: http://svn.webkit.org/repository/webkit/trunk/WebCore/
Patch Set: '' Created 10 years, 11 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
« no previous file with comments | « inspector/InspectorBackend.cpp ('k') | inspector/InspectorController.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 /* 1 /*
2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com> 3 * Copyright (C) 2008 Matt Lilek <webkit@mattlilek.com>
4 * Copyright (C) 2009 Google Inc. All rights reserved. 4 * Copyright (C) 2009 Google Inc. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 boolean profilerEnabled(); 68 boolean profilerEnabled();
69 void enableProfiler(in boolean always); 69 void enableProfiler(in boolean always);
70 void disableProfiler(in boolean always); 70 void disableProfiler(in boolean always);
71 71
72 void startProfiling(); 72 void startProfiling();
73 void stopProfiling(); 73 void stopProfiling();
74 74
75 void getProfileHeaders(in long callId); 75 void getProfileHeaders(in long callId);
76 void getProfile(in long callId, in unsigned long uid); 76 void getProfile(in long callId, in unsigned long uid);
77 #endif 77 #endif
78 void dispatchOnInjectedScript(in long callId, in DOMString methodName, i n DOMString arguments, in boolean async); 78 void setInjectedScriptSource(in DOMString scriptSource);
79 void dispatchOnInjectedScript(in long callId, in long injectedScriptId, in DOMString methodName, in DOMString arguments, in boolean async);
79 void getChildNodes(in long callId, in long nodeId); 80 void getChildNodes(in long callId, in long nodeId);
80 void setAttribute(in long callId, in long elementId, in DOMString name, in DOMString value); 81 void setAttribute(in long callId, in long elementId, in DOMString name, in DOMString value);
81 void removeAttribute(in long callId, in long elementId, in DOMString nam e); 82 void removeAttribute(in long callId, in long elementId, in DOMString nam e);
82 void setTextNodeValue(in long callId, in long nodeId, in DOMString value ); 83 void setTextNodeValue(in long callId, in long nodeId, in DOMString value );
83 void getEventListenersForNode(in long callId, in long nodeId); 84 void getEventListenersForNode(in long callId, in long nodeId);
84 void copyNode(in long nodeId); 85 void copyNode(in long nodeId);
85 void removeNode(in long callId, in long nodeId); 86 void removeNode(in long callId, in long nodeId);
86 void highlightDOMNode(in long nodeId); 87 void highlightDOMNode(in long nodeId);
87 void hideDOMNodeHighlight(); 88 void hideDOMNodeHighlight();
88 89
89 void getCookies(in long callId); 90 void getCookies(in long callId);
90 void deleteCookie(in DOMString cookieName, in DOMString domain); 91 void deleteCookie(in DOMString cookieName, in DOMString domain);
91 92
92 void releaseWrapperObjectGroup(in DOMString objectGroup); 93 void releaseWrapperObjectGroup(in long injectedScriptId, in DOMString ob jectGroup);
93 void didEvaluateForTestInFrontend(in long callId, in DOMString jsonResul t); 94 void didEvaluateForTestInFrontend(in long callId, in DOMString jsonResul t);
94 95
95 #if defined(ENABLE_DATABASE) && ENABLE_DATABASE 96 #if defined(ENABLE_DATABASE) && ENABLE_DATABASE
96 void getDatabaseTableNames(in long callId, in long databaseId); 97 void getDatabaseTableNames(in long callId, in long databaseId);
97 #endif 98 #endif
98 99
99 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE 100 #if defined(ENABLE_DOM_STORAGE) && ENABLE_DOM_STORAGE
100 void getDOMStorageEntries(in long callId, in long storageId); 101 void getDOMStorageEntries(in long callId, in long storageId);
101 void setDOMStorageItem(in long callId, in long storageId, in DOMString k ey, in DOMString value); 102 void setDOMStorageItem(in long callId, in long storageId, in DOMString k ey, in DOMString value);
102 void removeDOMStorageItem(in long callId, in long storageId, in DOMStrin g key); 103 void removeDOMStorageItem(in long callId, in long storageId, in DOMStrin g key);
103 #endif 104 #endif
104 }; 105 };
105 } 106 }
OLDNEW
« no previous file with comments | « inspector/InspectorBackend.cpp ('k') | inspector/InspectorController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698