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

Unified Diff: content/gpu/gpu_info_collector.h

Issue 8528019: Fix components build on Linux when toolkit_views=1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: content_export first Created 9 years, 1 month 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 | « content/browser/renderer_host/render_widget_host_view.h ('k') | content/public/common/url_constants.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/gpu/gpu_info_collector.h
diff --git a/content/gpu/gpu_info_collector.h b/content/gpu/gpu_info_collector.h
index b0df5aab0a74de410aab0453a6e08561543eeaa7..e152a0b771a6d98ca645a3fccef333db0c606fbe 100644
--- a/content/gpu/gpu_info_collector.h
+++ b/content/gpu/gpu_info_collector.h
@@ -30,13 +30,13 @@ bool CollectPreliminaryGraphicsInfo(content::GPUInfo* gpu_info);
// The selection between the two methods is done in the cc file.
// A D3D argument is passed in for testing purposes
-bool CONTENT_EXPORT CollectGraphicsInfoD3D(IDirect3D9* d3d,
+CONTENT_EXPORT bool CollectGraphicsInfoD3D(IDirect3D9* d3d,
content::GPUInfo* gpu_info);
// Collects D3D driver version/date through registry lookup.
// Note that this does not require a D3D context.
// device_id here is the raw data in DISPLAY_DEVICE.
-bool CONTENT_EXPORT CollectDriverInfoD3D(const std::wstring& device_id,
+CONTENT_EXPORT bool CollectDriverInfoD3D(const std::wstring& device_id,
content::GPUInfo* gpu_info);
// Collect the DirectX Disagnostics information about the attached displays.
@@ -44,7 +44,7 @@ bool GetDxDiagnostics(content::DxDiagNode* output);
#endif
// All platforms have a GL version for collecting information
-bool CONTENT_EXPORT CollectGraphicsInfoGL(content::GPUInfo* gpu_info);
+CONTENT_EXPORT bool CollectGraphicsInfoGL(content::GPUInfo* gpu_info);
// Collect GL and Shading language version information
bool CollectGLVersionInfo(content::GPUInfo* gpu_info);
« no previous file with comments | « content/browser/renderer_host/render_widget_host_view.h ('k') | content/public/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698