diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-08 01:48:48 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-08 01:48:48 +0000 |
commit | f24a1e2b4c8e42794d1636e43bf033f8762410c0 (patch) | |
tree | 4f5e50b905149674e93d063a8b31c53e0905bf70 /chrome/common/child_process_logging_linux.cc | |
parent | 31af5f2c16eb49136701e4a9d0b9625a12ba8b28 (diff) | |
download | chromium_src-f24a1e2b4c8e42794d1636e43bf033f8762410c0.zip chromium_src-f24a1e2b4c8e42794d1636e43bf033f8762410c0.tar.gz chromium_src-f24a1e2b4c8e42794d1636e43bf033f8762410c0.tar.bz2 |
Moved code that runs in both the browser and GPU process from content/gpu to content/common/gpu.
Also renamed GpuRenderThread to GpuChannelManager since that is what it really does.
The only remaining dependency from content/common/gpu to content/gpu is gpu_watchdog_thread.h. Once that dependency has been reversed it should be possible to move most or all of the code in content/gpu to chrome/gpu.
TEST=build, WebGL works, run by trybots.
BUG=none
Review URL: http://codereview.chromium.org/6793054
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@80883 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/child_process_logging_linux.cc')
-rw-r--r-- | chrome/common/child_process_logging_linux.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/child_process_logging_linux.cc b/chrome/common/child_process_logging_linux.cc index f15536e..a730761 100644 --- a/chrome/common/child_process_logging_linux.cc +++ b/chrome/common/child_process_logging_linux.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -8,7 +8,7 @@ #include "base/string_util.h" #include "base/utf_string_conversions.h" #include "chrome/installer/util/google_update_settings.h" -#include "content/common/gpu_info.h" +#include "content/common/gpu/gpu_info.h" #include "googleurl/src/gurl.h" namespace child_process_logging { |