From 631a54712d79c39bb7fbd322e3e4dc6b2429686d Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 18 Feb 2013 06:14:59 +0000 Subject: Fix more remaining FilePath -> base::FilePath. This removes the "using" in file_path.h for Mac since Mac now passes trybots with no using. It still leaves the using for Windows. Review URL: https://codereview.chromium.org/12294008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@183066 0039d316-1c4b-4281-b951-d872f2087c98 --- content/gpu/gpu_info_collector_win.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'content/gpu/gpu_info_collector_win.cc') diff --git a/content/gpu/gpu_info_collector_win.cc b/content/gpu/gpu_info_collector_win.cc index 506e098..ca081a0 100644 --- a/content/gpu/gpu_info_collector_win.cc +++ b/content/gpu/gpu_info_collector_win.cc @@ -212,7 +212,7 @@ void CollectD3D11Support() { FeatureLevel feature_level = FEATURE_LEVEL_UNKNOWN; UINT bgra_support = 0; - base::ScopedNativeLibrary module(FilePath(L"d3d11.dll")); + base::ScopedNativeLibrary module(base::FilePath(L"d3d11.dll")); if (!module.is_valid()) { feature_level = FEATURE_LEVEL_NO_D3D11_DLL; } else { -- cgit v1.1