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

Side by Side Diff: android_webview/renderer/aw_content_renderer_client.h

Issue 2540163002: WebView: 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
« no previous file with comments | « android_webview/native/aw_web_preferences_populater_impl.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 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ 5 #ifndef ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_
6 #define ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ 6 #define ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <string> 9 #include <string>
10 10
11 #include "android_webview/renderer/aw_render_thread_observer.h" 11 #include "android_webview/renderer/aw_render_thread_observer.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/memory/weak_ptr.h" 13 #include "base/memory/weak_ptr.h"
14 #include "components/spellcheck/spellcheck_build_features.h" 14 #include "components/spellcheck/spellcheck_build_features.h"
15 #include "components/web_restrictions/interfaces/web_restrictions.mojom.h" 15 #include "components/web_restrictions/interfaces/web_restrictions.mojom.h"
16 #include "content/public/renderer/content_renderer_client.h" 16 #include "content/public/renderer/content_renderer_client.h"
17 17
18 #if BUILDFLAG(ENABLE_SPELLCHECK) 18 #if BUILDFLAG(ENABLE_SPELLCHECK)
19 class SpellCheck; 19 class SpellCheck;
20 class SpellCheckProvider;
21 #endif 20 #endif
22 21
23 namespace visitedlink { 22 namespace visitedlink {
24 class VisitedLinkSlave; 23 class VisitedLinkSlave;
25 } 24 }
26 25
27 namespace android_webview { 26 namespace android_webview {
28 27
29 class AwContentRendererClient : public content::ContentRendererClient { 28 class AwContentRendererClient : public content::ContentRendererClient {
30 public: 29 public:
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 #if BUILDFLAG(ENABLE_SPELLCHECK) 65 #if BUILDFLAG(ENABLE_SPELLCHECK)
67 std::unique_ptr<SpellCheck> spellcheck_; 66 std::unique_ptr<SpellCheck> spellcheck_;
68 #endif 67 #endif
69 68
70 DISALLOW_COPY_AND_ASSIGN(AwContentRendererClient); 69 DISALLOW_COPY_AND_ASSIGN(AwContentRendererClient);
71 }; 70 };
72 71
73 } // namespace android_webview 72 } // namespace android_webview
74 73
75 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_ 74 #endif // ANDROID_WEBVIEW_RENDERER_AW_CONTENT_RENDERER_CLIENT_H_
OLDNEW
« no previous file with comments | « android_webview/native/aw_web_preferences_populater_impl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698