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/WebDevToolsAgentImpl.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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 45
46 namespace blink { 46 namespace blink {
47 47
48 class GraphicsLayer; 48 class GraphicsLayer;
49 class InspectedFrames; 49 class InspectedFrames;
50 class InspectorOverlay; 50 class InspectorOverlay;
51 class InspectorResourceContainer; 51 class InspectorResourceContainer;
52 class InspectorResourceContentLoader; 52 class InspectorResourceContentLoader;
53 class LocalFrame; 53 class LocalFrame;
54 class Page; 54 class Page;
55 class PlatformGestureEvent;
56 class PlatformMouseEvent;
57 class PlatformTouchEvent;
58 class WebDevToolsAgentClient; 55 class WebDevToolsAgentClient;
59 class WebFrameWidgetImpl; 56 class WebFrameWidgetImpl;
60 class WebInputEvent;
61 class WebLayerTreeView; 57 class WebLayerTreeView;
62 class WebLocalFrameImpl; 58 class WebLocalFrameImpl;
63 class WebString; 59 class WebString;
64 class WebViewImpl; 60 class WebViewImpl;
65 61
66 class WebDevToolsAgentImpl final 62 class WebDevToolsAgentImpl final
67 : public GarbageCollectedFinalized<WebDevToolsAgentImpl>, 63 : public GarbageCollectedFinalized<WebDevToolsAgentImpl>,
68 public WebDevToolsAgent, 64 public WebDevToolsAgent,
69 public InspectorEmulationAgent::Client, 65 public InspectorEmulationAgent::Client,
70 public InspectorTracingAgent::Client, 66 public InspectorTracingAgent::Client,
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
167 Member<InspectorTracingAgent> m_tracingAgent; 163 Member<InspectorTracingAgent> m_tracingAgent;
168 164
169 Member<InspectorSession> m_session; 165 Member<InspectorSession> m_session;
170 bool m_includeViewAgents; 166 bool m_includeViewAgents;
171 int m_layerTreeId; 167 int m_layerTreeId;
172 }; 168 };
173 169
174 } // namespace blink 170 } // namespace blink
175 171
176 #endif 172 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698