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

Unified Diff: chrome/common/child_process_logging_posix.cc

Issue 15745014: Move GPU device/driver info related code from content to gpu. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: rebase Created 7 years, 7 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
« no previous file with comments | « chrome/common/child_process_logging_mac.mm ('k') | chrome/common/child_process_logging_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/child_process_logging_posix.cc
===================================================================
--- chrome/common/child_process_logging_posix.cc (revision 201645)
+++ chrome/common/child_process_logging_posix.cc (working copy)
@@ -12,8 +12,8 @@
#include "base/utf_string_conversions.h"
#include "chrome/common/metrics/variations/variations_util.h"
#include "chrome/installer/util/google_update_settings.h"
-#include "content/public/common/gpu_info.h"
#include "googleurl/src/gurl.h"
+#include "gpu/config/gpu_info.h"
namespace child_process_logging {
@@ -95,7 +95,7 @@
arraysize(g_extension_ids));
}
-void SetGpuInfo(const content::GPUInfo& gpu_info) {
+void SetGpuInfo(const gpu::GPUInfo& gpu_info) {
snprintf(g_gpu_vendor_id, arraysize(g_gpu_vendor_id), "0x%04x",
gpu_info.gpu.vendor_id);
snprintf(g_gpu_device_id, arraysize(g_gpu_device_id), "0x%04x",
« no previous file with comments | « chrome/common/child_process_logging_mac.mm ('k') | chrome/common/child_process_logging_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698