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

Unified Diff: content/browser/gpu/gpu_process_host.h

Issue 1823763003: Move more files to gpu/ipc/common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed Android Build Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/gpu/gpu_process_host.h
diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h
index 04dc52c579dff9cd1dbd2d78dbf97e81f79dff19..103fd1e58cee6a317d8e231f1c31bb95c45826d7 100644
--- a/content/browser/gpu/gpu_process_host.h
+++ b/content/browser/gpu/gpu_process_host.h
@@ -20,12 +20,12 @@
#include "base/time/time.h"
#include "build/build_config.h"
#include "content/common/content_export.h"
-#include "content/common/gpu/gpu_memory_uma_stats.h"
-#include "content/common/gpu/gpu_process_launch_causes.h"
#include "content/public/browser/browser_child_process_host_delegate.h"
#include "content/public/browser/gpu_data_manager.h"
#include "gpu/command_buffer/common/constants.h"
#include "gpu/config/gpu_info.h"
+#include "gpu/ipc/common/gpu_memory_uma_stats.h"
+#include "gpu/ipc/common/gpu_process_launch_causes.h"
#include "gpu/ipc/common/surface_handle.h"
#include "ipc/ipc_sender.h"
#include "ipc/message_filter.h"
@@ -87,7 +87,7 @@ class GpuProcessHost : public BrowserChildProcessHostDelegate,
// loop as it can be destroyed. Instead store the associated GPU host ID.
// This could return NULL if GPU access is not allowed (blacklisted).
CONTENT_EXPORT static GpuProcessHost* Get(GpuProcessKind kind,
- CauseForGpuLaunch cause);
+ gpu::CauseForGpuLaunch cause);
// Retrieves a list of process handles for all gpu processes.
static void GetProcessHandles(
@@ -97,7 +97,7 @@ class GpuProcessHost : public BrowserChildProcessHostDelegate,
// thread. Calls Get and if a host is returned, sends it. Can be called from
// any thread. Deletes the message if it cannot be sent.
CONTENT_EXPORT static void SendOnIO(GpuProcessKind kind,
- CauseForGpuLaunch cause,
+ gpu::CauseForGpuLaunch cause,
IPC::Message* message);
CONTENT_EXPORT static void RegisterGpuMainThreadFactory(

Powered by Google App Engine
This is Rietveld 408576698