From 1bf14bcd62453cb53e21097a61fcefb0c5cc213b Mon Sep 17 00:00:00 2001 From: "rlp@chromium.org" Date: Fri, 9 Jul 2010 16:10:43 +0000 Subject: Moving gpu_info to common so that it can be used by param traits. Pulling the collection out into a separate class. BUG=38736 TEST=existing unittests Review URL: http://codereview.chromium.org/2914001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@51967 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/gpu/gpu_info_collector_linux.cc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 chrome/gpu/gpu_info_collector_linux.cc (limited to 'chrome/gpu/gpu_info_collector_linux.cc') diff --git a/chrome/gpu/gpu_info_collector_linux.cc b/chrome/gpu/gpu_info_collector_linux.cc new file mode 100644 index 0000000..d6e08b4 --- /dev/null +++ b/chrome/gpu/gpu_info_collector_linux.cc @@ -0,0 +1,14 @@ +// Copyright (c) 2006-2010 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. + +#include "chrome/gpu/gpu_info_collector.h" + +namespace gpu_info_collector { + +bool CollectGraphicsInfo(GPUInfo& gpu_info) { + // TODO(rlp): complete this function + return true; +} + +} // namespace gpu_info_collector -- cgit v1.1