diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-14 18:17:08 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-14 18:17:08 +0000 |
commit | 8d97adeeabe5d28a50711423268168448bf56fd5 (patch) | |
tree | 9ef3250afc5c77c3425bb8c3789d7136cc99336b /chrome/common/chrome_content_client.cc | |
parent | 9e611f644c8043f2cf957af5ed094b1280ee1459 (diff) | |
download | chromium_src-8d97adeeabe5d28a50711423268168448bf56fd5.zip chromium_src-8d97adeeabe5d28a50711423268168448bf56fd5.tar.gz chromium_src-8d97adeeabe5d28a50711423268168448bf56fd5.tar.bz2 |
Move a bunch of Chrome specific code out of RenderThread, in preparation of moving it to content.
Review URL: http://codereview.chromium.org/6850003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81614 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_content_client.cc')
-rw-r--r-- | chrome/common/chrome_content_client.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_content_client.cc b/chrome/common/chrome_content_client.cc index 96795f6..01d2bcd8 100644 --- a/chrome/common/chrome_content_client.cc +++ b/chrome/common/chrome_content_client.cc @@ -12,4 +12,8 @@ void ChromeContentClient::SetActiveURL(const GURL& url) { child_process_logging::SetActiveURL(url); } +void ChromeContentClient::SetGpuInfo(const GPUInfo& gpu_info) { + child_process_logging::SetGpuInfo(gpu_info); +} + } // namespace chrome |