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

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

Issue 2463703003: blink: Cleanup core class forward declarations (Closed)
Patch Set: Remove redundant empty lines 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
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/WindowAudioWorklet.h ('k') | no next file » | 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) 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 class Color; 48 class Color;
49 class EmptyChromeClient; 49 class EmptyChromeClient;
50 class LocalFrame; 50 class LocalFrame;
51 class GraphicsContext; 51 class GraphicsContext;
52 class GraphicsLayer; 52 class GraphicsLayer;
53 class InspectorCSSAgent; 53 class InspectorCSSAgent;
54 class LayoutEditor; 54 class LayoutEditor;
55 class Node; 55 class Node;
56 class Page; 56 class Page;
57 class PageOverlay; 57 class PageOverlay;
58 class PlatformGestureEvent;
59 class PlatformMouseEvent;
60 class PlatformTouchEvent;
58 class WebViewImpl; 61 class WebViewImpl;
59 62
60 namespace protocol { 63 namespace protocol {
61 class Value; 64 class Value;
62 } 65 }
63 66
64 class InspectorOverlay final 67 class InspectorOverlay final
65 : public GarbageCollectedFinalized<InspectorOverlay>, 68 : public GarbageCollectedFinalized<InspectorOverlay>,
66 public InspectorDOMAgent::Client, 69 public InspectorDOMAgent::Client,
67 public InspectorOverlayHost::Listener { 70 public InspectorOverlayHost::Listener {
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 Member<LayoutEditor> m_layoutEditor; 180 Member<LayoutEditor> m_layoutEditor;
178 std::unique_ptr<PageOverlay> m_pageOverlay; 181 std::unique_ptr<PageOverlay> m_pageOverlay;
179 Member<Node> m_hoveredNodeForInspectMode; 182 Member<Node> m_hoveredNodeForInspectMode;
180 InspectorDOMAgent::SearchMode m_inspectMode; 183 InspectorDOMAgent::SearchMode m_inspectMode;
181 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig; 184 std::unique_ptr<InspectorHighlightConfig> m_inspectModeHighlightConfig;
182 }; 185 };
183 186
184 } // namespace blink 187 } // namespace blink
185 188
186 #endif // InspectorOverlay_h 189 #endif // InspectorOverlay_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/webaudio/WindowAudioWorklet.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698