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

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

Issue 2542203004: blink: Cleanup class/struct forward declarations (Closed)
Patch Set: Created 4 years 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 #include "web/WebExport.h" 65 #include "web/WebExport.h"
66 #include "wtf/Compiler.h" 66 #include "wtf/Compiler.h"
67 #include "wtf/HashSet.h" 67 #include "wtf/HashSet.h"
68 #include "wtf/RefCounted.h" 68 #include "wtf/RefCounted.h"
69 #include "wtf/Vector.h" 69 #include "wtf/Vector.h"
70 #include <memory> 70 #include <memory>
71 71
72 namespace blink { 72 namespace blink {
73 73
74 class BrowserControls; 74 class BrowserControls;
75 class DataObject;
76 class DevToolsEmulator; 75 class DevToolsEmulator;
77 class Frame; 76 class Frame;
78 class FullscreenController; 77 class FullscreenController;
79 class InspectorOverlay; 78 class InspectorOverlay;
80 class LinkHighlightImpl; 79 class LinkHighlightImpl;
81 class PageOverlay; 80 class PageOverlay;
82 class PageScaleConstraintsSet; 81 class PageScaleConstraintsSet;
83 class PaintLayerCompositor; 82 class PaintLayerCompositor;
84 class UserGestureToken; 83 class UserGestureToken;
85 class WebActiveGestureAnimation; 84 class WebActiveGestureAnimation;
86 class WebDevToolsAgentImpl; 85 class WebDevToolsAgentImpl;
87 class WebElement; 86 class WebElement;
88 class WebInputMethodControllerImpl; 87 class WebInputMethodControllerImpl;
89 class WebLayerTreeView; 88 class WebLayerTreeView;
90 class WebLocalFrame; 89 class WebLocalFrame;
91 class WebLocalFrameImpl; 90 class WebLocalFrameImpl;
92 class WebImage;
93 class CompositorMutatorImpl; 91 class CompositorMutatorImpl;
94 class WebPagePopupImpl; 92 class WebPagePopupImpl;
95 class WebPlugin; 93 class WebPlugin;
96 class WebRemoteFrame; 94 class WebRemoteFrame;
97 class WebSettingsImpl; 95 class WebSettingsImpl;
98 class WebViewScheduler; 96 class WebViewScheduler;
99 97
100 class WEB_EXPORT WebViewImpl final 98 class WEB_EXPORT WebViewImpl final
101 : NON_EXPORTED_BASE(public WebView), 99 : NON_EXPORTED_BASE(public WebView),
102 public RefCounted<WebViewImpl>, 100 public RefCounted<WebViewImpl>,
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after
735 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; 733 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
736 }; 734 };
737 735
738 // We have no ways to check if the specified WebView is an instance of 736 // We have no ways to check if the specified WebView is an instance of
739 // WebViewImpl because WebViewImpl is the only implementation of WebView. 737 // WebViewImpl because WebViewImpl is the only implementation of WebView.
740 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 738 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
741 739
742 } // namespace blink 740 } // namespace blink
743 741
744 #endif 742 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebSharedWorkerImpl.h ('k') | third_party/WebKit/Source/web/tests/FakeWebPlugin.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698