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

Side by Side Diff: chrome/renderer/chrome_render_view_observer.h

Issue 2530053003: chrome: Cleanup class/struct forward declarations (Closed)
Patch Set: Rebase + address comment 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 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 5 #ifndef CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 6 #define CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
11 11
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/timer/timer.h" 13 #include "base/timer/timer.h"
14 #include "build/build_config.h" 14 #include "build/build_config.h"
15 #include "content/public/common/browser_controls_state.h" 15 #include "content/public/common/browser_controls_state.h"
16 #include "content/public/renderer/render_view_observer.h" 16 #include "content/public/renderer/render_view_observer.h"
17 #include "extensions/features/features.h" 17 #include "extensions/features/features.h"
18 #include "url/gurl.h" 18 #include "url/gurl.h"
19 19
20 class ContentSettingsObserver;
21 class SkBitmap;
22
23 namespace blink { 20 namespace blink {
24 class WebView;
25 struct WebWindowFeatures; 21 struct WebWindowFeatures;
26 } 22 }
27 23
28 namespace web_cache { 24 namespace web_cache {
29 class WebCacheImpl; 25 class WebCacheImpl;
30 } 26 }
31 27
32 // This class holds the Chrome specific parts of RenderView, and has the same 28 // This class holds the Chrome specific parts of RenderView, and has the same
33 // lifetime. 29 // lifetime.
34 class ChromeRenderViewObserver : public content::RenderViewObserver { 30 class ChromeRenderViewObserver : public content::RenderViewObserver {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
70 // Owned by ChromeContentRendererClient and outlive us. 66 // Owned by ChromeContentRendererClient and outlive us.
71 web_cache::WebCacheImpl* web_cache_impl_; 67 web_cache::WebCacheImpl* web_cache_impl_;
72 68
73 // true if webview is overlayed with grey color. 69 // true if webview is overlayed with grey color.
74 bool webview_visually_deemphasized_; 70 bool webview_visually_deemphasized_;
75 71
76 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver); 72 DISALLOW_COPY_AND_ASSIGN(ChromeRenderViewObserver);
77 }; 73 };
78 74
79 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_ 75 #endif // CHROME_RENDERER_CHROME_RENDER_VIEW_OBSERVER_H_
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_render_frame_observer.h ('k') | chrome/renderer/extensions/cast_streaming_native_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698