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

Side by Side Diff: android_webview/browser/hardware_renderer.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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_BROWSER_HARDWARE_RENDERER_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
6 #define ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_ 6 #define ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "android_webview/browser/child_frame.h" 10 #include "android_webview/browser/child_frame.h"
11 #include "android_webview/browser/compositor_id.h" 11 #include "android_webview/browser/compositor_id.h"
12 #include "base/macros.h" 12 #include "base/macros.h"
13 #include "base/memory/ref_counted.h" 13 #include "base/memory/ref_counted.h"
14 #include "cc/surfaces/frame_sink_id.h" 14 #include "cc/surfaces/frame_sink_id.h"
15 #include "cc/surfaces/surface_factory_client.h" 15 #include "cc/surfaces/surface_factory_client.h"
16 #include "cc/surfaces/surface_id.h" 16 #include "cc/surfaces/surface_id.h"
17 17
18 struct AwDrawGLInfo; 18 struct AwDrawGLInfo;
19 19
20 namespace cc { 20 namespace cc {
21 class Display;
22 class SurfaceFactory; 21 class SurfaceFactory;
23 class SurfaceIdAllocator; 22 class SurfaceIdAllocator;
24 class SurfaceManager;
25 } 23 }
26 24
27 namespace android_webview { 25 namespace android_webview {
28 26
29 class ChildFrame; 27 class ChildFrame;
30 class RenderThreadManager; 28 class RenderThreadManager;
31 class SurfacesInstance; 29 class SurfacesInstance;
32 30
33 class HardwareRenderer : public cc::SurfaceFactoryClient { 31 class HardwareRenderer : public cc::SurfaceFactoryClient {
34 public: 32 public:
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 // dropped. 90 // dropped.
93 uint32_t last_committed_compositor_frame_sink_id_; 91 uint32_t last_committed_compositor_frame_sink_id_;
94 uint32_t last_submitted_compositor_frame_sink_id_; 92 uint32_t last_submitted_compositor_frame_sink_id_;
95 93
96 DISALLOW_COPY_AND_ASSIGN(HardwareRenderer); 94 DISALLOW_COPY_AND_ASSIGN(HardwareRenderer);
97 }; 95 };
98 96
99 } // namespace android_webview 97 } // namespace android_webview
100 98
101 #endif // ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_ 99 #endif // ANDROID_WEBVIEW_BROWSER_HARDWARE_RENDERER_H_
OLDNEW
« no previous file with comments | « android_webview/browser/browser_view_renderer_client.h ('k') | android_webview/browser/net/aw_network_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698