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

Side by Side Diff: android_webview/gpu/aw_content_gpu_client.h

Issue 1908223002: Remove content/gpu from content/browser/android/DEPS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: owned_sync_point_manager_ Created 4 years, 8 months 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/gpu/DEPS ('k') | android_webview/gpu/aw_content_gpu_client.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef ANDROID_WEBVIEW_GPU_AW_CONTENT_GPU_CLIENT_H_
6 #define ANDROID_WEBVIEW_GPU_AW_CONTENT_GPU_CLIENT_H_
7
8 #include "base/callback.h"
9 #include "base/macros.h"
10 #include "content/public/gpu/content_gpu_client.h"
11
12 namespace android_webview {
13
14 class AwContentGpuClient : public content::ContentGpuClient {
15 public:
16 using GetSyncPointManagerCallback = base::Callback<gpu::SyncPointManager*()>;
17
18 explicit AwContentGpuClient(const GetSyncPointManagerCallback& callback);
19 ~AwContentGpuClient() override;
20
21 // content::ContentGpuClient implementation.
22 void RegisterMojoServices(content::ServiceRegistry* registry) override;
23 gpu::SyncPointManager* GetSyncPointManager() override;
24
25 private:
26 GetSyncPointManagerCallback sync_point_manager_callback_;
27 DISALLOW_COPY_AND_ASSIGN(AwContentGpuClient);
28 };
29
30 } // namespace android_webview
31
32 #endif // ANDROID_WEBVIEW_GPU_AW_CONTENT_GPU_CLIENT_H_
OLDNEW
« no previous file with comments | « android_webview/gpu/DEPS ('k') | android_webview/gpu/aw_content_gpu_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698