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

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

Issue 13646003: DevTools: Remove ENABLE(INSPECTOR) and ENABLE(JAVASCRIPT_DEBUGGER) from the code. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: comments addressed Created 7 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 class Node; 70 class Node;
71 class RevalidateStyleAttributeTask; 71 class RevalidateStyleAttributeTask;
72 class ScriptValue; 72 class ScriptValue;
73 class ShadowRoot; 73 class ShadowRoot;
74 74
75 struct HighlightConfig; 75 struct HighlightConfig;
76 76
77 typedef String ErrorString; 77 typedef String ErrorString;
78 typedef int BackendNodeId; 78 typedef int BackendNodeId;
79 79
80 #if ENABLE(INSPECTOR)
81 80
82 struct EventListenerInfo { 81 struct EventListenerInfo {
83 EventListenerInfo(Node* node, const AtomicString& eventType, const EventList enerVector& eventListenerVector) 82 EventListenerInfo(Node* node, const AtomicString& eventType, const EventList enerVector& eventListenerVector)
84 : node(node) 83 : node(node)
85 , eventType(eventType) 84 , eventType(eventType)
86 , eventListenerVector(eventListenerVector) 85 , eventListenerVector(eventListenerVector)
87 { 86 {
88 } 87 }
89 88
90 Node* node; 89 Node* node;
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 SearchResults m_searchResults; 264 SearchResults m_searchResults;
266 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask; 265 OwnPtr<RevalidateStyleAttributeTask> m_revalidateStyleAttrTask;
267 RefPtr<Node> m_nodeToFocus; 266 RefPtr<Node> m_nodeToFocus;
268 bool m_searchingForNode; 267 bool m_searchingForNode;
269 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig; 268 OwnPtr<HighlightConfig> m_inspectModeHighlightConfig;
270 OwnPtr<InspectorHistory> m_history; 269 OwnPtr<InspectorHistory> m_history;
271 OwnPtr<DOMEditor> m_domEditor; 270 OwnPtr<DOMEditor> m_domEditor;
272 bool m_suppressAttributeModifiedEvent; 271 bool m_suppressAttributeModifiedEvent;
273 }; 272 };
274 273
275 #endif // ENABLE(INSPECTOR)
276 274
277 } // namespace WebCore 275 } // namespace WebCore
278 276
279 #endif // !defined(InspectorDOMAgent_h) 277 #endif // !defined(InspectorDOMAgent_h)
OLDNEW
« no previous file with comments | « Source/WebCore/inspector/InspectorCounters.cpp ('k') | Source/WebCore/inspector/InspectorDOMAgent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698