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

Side by Side Diff: third_party/WebKit/Source/web/WebViewImpl.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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 class WebDevToolsAgentImpl; 85 class WebDevToolsAgentImpl;
86 class WebElement; 86 class WebElement;
87 class WebLayerTreeView; 87 class WebLayerTreeView;
88 class WebLocalFrame; 88 class WebLocalFrame;
89 class WebLocalFrameImpl; 89 class WebLocalFrameImpl;
90 class WebImage; 90 class WebImage;
91 class CompositorMutatorImpl; 91 class CompositorMutatorImpl;
92 class WebPagePopupImpl; 92 class WebPagePopupImpl;
93 class WebPlugin; 93 class WebPlugin;
94 class WebRemoteFrame; 94 class WebRemoteFrame;
95 class WebSelection;
96 class WebSettingsImpl; 95 class WebSettingsImpl;
97 class WebViewScheduler; 96 class WebViewScheduler;
98 97
99 class WEB_EXPORT WebViewImpl final 98 class WEB_EXPORT WebViewImpl final
100 : WTF_NON_EXPORTED_BASE(public WebView), 99 : WTF_NON_EXPORTED_BASE(public WebView),
101 public RefCounted<WebViewImpl>, 100 public RefCounted<WebViewImpl>,
102 WTF_NON_EXPORTED_BASE(public WebGestureCurveTarget), 101 WTF_NON_EXPORTED_BASE(public WebGestureCurveTarget),
103 public PageWidgetEventHandler, 102 public PageWidgetEventHandler,
104 public WebScheduler::InterventionReporter { 103 public WebScheduler::InterventionReporter {
105 public: 104 public:
(...skipping 656 matching lines...) Expand 10 before | Expand all | Expand 10 after
762 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor; 761 Persistent<ResizeViewportAnchor> m_resizeViewportAnchor;
763 }; 762 };
764 763
765 // We have no ways to check if the specified WebView is an instance of 764 // We have no ways to check if the specified WebView is an instance of
766 // WebViewImpl because WebViewImpl is the only implementation of WebView. 765 // WebViewImpl because WebViewImpl is the only implementation of WebView.
767 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true); 766 DEFINE_TYPE_CASTS(WebViewImpl, WebView, webView, true, true);
768 767
769 } // namespace blink 768 } // namespace blink
770 769
771 #endif 770 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698