summaryrefslogtreecommitdiffstats
path: root/content/browser/gpu/gpu_process_host.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-20 23:56:55 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-20 23:56:55 +0000
commita80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2 (patch)
treee1b989fd7c67f745061a481692671b1331cffe02 /content/browser/gpu/gpu_process_host.h
parent56cbcc3ce45c1b68f9fbdbed6244bebe1f203403 (diff)
downloadchromium_src-a80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2.zip
chromium_src-a80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2.tar.gz
chromium_src-a80f5ece3d46eeb0734cfca6c716d69e7ab7aaa2.tar.bz2
Move GPUInfo to content/public/common and put it into the content namespace.
BUG=98716 Review URL: http://codereview.chromium.org/8363007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106637 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/gpu/gpu_process_host.h')
-rw-r--r--content/browser/gpu/gpu_process_host.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/content/browser/gpu/gpu_process_host.h b/content/browser/gpu/gpu_process_host.h
index b337176..9f2b520 100644
--- a/content/browser/gpu/gpu_process_host.h
+++ b/content/browser/gpu/gpu_process_host.h
@@ -14,8 +14,8 @@
#include "base/threading/non_thread_safe.h"
#include "content/browser/browser_child_process_host.h"
#include "content/common/content_export.h"
-#include "content/common/gpu/gpu_info.h"
#include "content/common/gpu/gpu_process_launch_causes.h"
+#include "content/public/common/gpu_info.h"
#include "ui/gfx/native_widget_types.h"
struct GPUCreateCommandBufferConfig;
@@ -60,7 +60,7 @@ class GpuProcessHost : public BrowserChildProcessHost,
typedef Callback3<const IPC::ChannelHandle&,
base::ProcessHandle,
- const GPUInfo&>::Type
+ const content::GPUInfo&>::Type
EstablishChannelCallback;
// Tells the GPU process to create a new channel for communication with a
@@ -99,7 +99,7 @@ class GpuProcessHost : public BrowserChildProcessHost,
void OnCommandBufferCreated(const int32 route_id);
void OnDestroyCommandBuffer(
gfx::PluginWindowHandle window, int32 renderer_id, int32 render_view_id);
- void OnGraphicsInfoCollected(const GPUInfo& gpu_info);
+ void OnGraphicsInfoCollected(const content::GPUInfo& gpu_info);
bool LaunchGpuProcess();
@@ -108,7 +108,7 @@ class GpuProcessHost : public BrowserChildProcessHost,
EstablishChannelCallback* callback,
const IPC::ChannelHandle& channel_handle,
base::ProcessHandle renderer_process_for_gpu,
- const GPUInfo& gpu_info);
+ const content::GPUInfo& gpu_info);
void CreateCommandBufferError(CreateCommandBufferCallback* callback,
int32 route_id);