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

Side by Side Diff: content/public/gpu/content_gpu_client.h

Issue 1646853002: Add embedder api for participating in gpu logic (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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 | « content/public/gpu/BUILD.gn ('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
(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 CONTENT_PUBLIC_GPU_CONTENT_GPU_CLIENT_H_
6 #define CONTENT_PUBLIC_GPU_CONTENT_GPU_CLIENT_H_
7
8 #include "content/public/common/content_client.h"
9
10 namespace content {
11
12 class ServiceRegistry;
13
14 // Embedder API for participating in gpu logic.
15 class CONTENT_EXPORT ContentGpuClient {
16 public:
17 virtual ~ContentGpuClient() {}
18
19 // Registers Mojo services.
20 virtual void RegisterMojoServices(ServiceRegistry* registry) {}
Owen Lin 2016/02/03 07:26:08 How about something like OnGpuThreadStarted(Servic
kcwu 2016/02/03 14:32:55 Done. I added more description in the comment. For
21 };
22
23 } // namespace content
24
25 #endif // CONTENT_PUBLIC_GPU_CONTENT_GPU_CLIENT_H_
OLDNEW
« no previous file with comments | « content/public/gpu/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698