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

Side by Side Diff: Source/core/inspector/InspectorDOMAgent.h

Issue 240013007: Remove some dead code from inspector/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 8 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 void didRemoveDOMAttr(Element*, const AtomicString& name); 168 void didRemoveDOMAttr(Element*, const AtomicString& name);
169 void styleAttributeInvalidated(const Vector<Element*>& elements); 169 void styleAttributeInvalidated(const Vector<Element*>& elements);
170 void characterDataModified(CharacterData*); 170 void characterDataModified(CharacterData*);
171 void didInvalidateStyleAttr(Node*); 171 void didInvalidateStyleAttr(Node*);
172 void didPushShadowRoot(Element* host, ShadowRoot*); 172 void didPushShadowRoot(Element* host, ShadowRoot*);
173 void willPopShadowRoot(Element* host, ShadowRoot*); 173 void willPopShadowRoot(Element* host, ShadowRoot*);
174 void frameDocumentUpdated(LocalFrame*); 174 void frameDocumentUpdated(LocalFrame*);
175 void pseudoElementCreated(PseudoElement*); 175 void pseudoElementCreated(PseudoElement*);
176 void pseudoElementDestroyed(PseudoElement*); 176 void pseudoElementDestroyed(PseudoElement*);
177 177
178 int pushNodeToFrontend(ErrorString*, int documentNodeId, Node*);
179 Node* nodeForId(int nodeId); 178 Node* nodeForId(int nodeId);
180 int boundNodeId(Node*); 179 int boundNodeId(Node*);
181 void setDOMListener(DOMListener*); 180 void setDOMListener(DOMListener*);
182 BackendNodeId backendNodeIdForNode(Node*, const String& nodeGroup); 181 BackendNodeId backendNodeIdForNode(Node*, const String& nodeGroup);
183 182
184 static String documentURLString(Document*); 183 static String documentURLString(Document*);
185 184
186 PassRefPtr<TypeBuilder::Runtime::RemoteObject> resolveNode(Node*, const Stri ng& objectGroup); 185 PassRefPtr<TypeBuilder::Runtime::RemoteObject> resolveNode(Node*, const Stri ng& objectGroup);
187 bool handleMousePress(); 186 bool handleMousePress();
188 bool handleGestureEvent(LocalFrame*, const PlatformGestureEvent&); 187 bool handleGestureEvent(LocalFrame*, const PlatformGestureEvent&);
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; 271 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig;
273 OwnPtr<InspectorHistory> m_history; 272 OwnPtr<InspectorHistory> m_history;
274 OwnPtr<DOMEditor> m_domEditor; 273 OwnPtr<DOMEditor> m_domEditor;
275 bool m_suppressAttributeModifiedEvent; 274 bool m_suppressAttributeModifiedEvent;
276 }; 275 };
277 276
278 277
279 } // namespace WebCore 278 } // namespace WebCore
280 279
281 #endif // !defined(InspectorDOMAgent_h) 280 #endif // !defined(InspectorDOMAgent_h)
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698