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

Side by Side Diff: third_party/WebKit/Source/web/InspectorOverlay.h

Issue 2466383004: blink: Cleanup class forward declarations (Closed)
Patch Set: Created 4 years, 1 month 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 28 matching lines...) Expand all
39 #include "platform/heap/Handle.h" 39 #include "platform/heap/Handle.h"
40 #include "public/web/WebInputEvent.h" 40 #include "public/web/WebInputEvent.h"
41 #include "wtf/RefPtr.h" 41 #include "wtf/RefPtr.h"
42 #include "wtf/text/WTFString.h" 42 #include "wtf/text/WTFString.h"
43 #include <memory> 43 #include <memory>
44 #include <v8-inspector.h> 44 #include <v8-inspector.h>
45 45
46 namespace blink { 46 namespace blink {
47 47
48 class Color; 48 class Color;
49 class EmptyChromeClient;
50 class LocalFrame; 49 class LocalFrame;
51 class GraphicsContext;
52 class GraphicsLayer;
53 class InspectorCSSAgent; 50 class InspectorCSSAgent;
54 class LayoutEditor; 51 class LayoutEditor;
55 class Node; 52 class Node;
56 class Page; 53 class Page;
57 class PageOverlay; 54 class PageOverlay;
58 class PlatformGestureEvent; 55 class PlatformGestureEvent;
59 class PlatformMouseEvent; 56 class PlatformMouseEvent;
60 class PlatformTouchEvent; 57 class PlatformTouchEvent;
61 class WebViewImpl; 58 class WebViewImpl;
62 59
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 Member<LayoutEditor> m_layoutEditor; 177 Member<LayoutEditor> m_layoutEditor;
181 std::unique_ptr<PageOverlay> m_pageOverlay; 178 std::unique_ptr<PageOverlay> m_pageOverlay;
182 Member<Node> m_hoveredNodeForInspectMode; 179 Member<Node> m_hoveredNodeForInspectMode;
183 InspectorDOMAgent::SearchMode m_inspectMode; 180 InspectorDOMAgent::SearchMode m_inspectMode;
184 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig; 181 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig;
185 }; 182 };
186 183
187 } // namespace blink 184 } // namespace blink
188 185
189 #endif // InspectorOverlay_h 186 #endif // InspectorOverlay_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698