summaryrefslogtreecommitdiffstats
path: root/chrome/plugin/chrome_content_plugin_client.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/plugin/chrome_content_plugin_client.cc')
-rw-r--r--chrome/plugin/chrome_content_plugin_client.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/plugin/chrome_content_plugin_client.cc b/chrome/plugin/chrome_content_plugin_client.cc
index d92ff309..2060503 100644
--- a/chrome/plugin/chrome_content_plugin_client.cc
+++ b/chrome/plugin/chrome_content_plugin_client.cc
@@ -39,12 +39,12 @@ void ChromeContentPluginClient::PreSandboxInitialization() {
#elif defined(OS_WIN)
// crypt32.dll is used to decode X509 certificates for Chromoting.
std::string error;
- if (base::LoadNativeLibrary(FilePath(L"crypt32.dll"), &error) == NULL)
+ if (base::LoadNativeLibrary(base::FilePath(L"crypt32.dll"), &error) == NULL)
LOG(ERROR) << "Failed to load crypto32.dll: " << error;
#endif // defined(OS_WIN)
// Load media libraries for the Chromoting client plugin.
- FilePath media_path;
+ base::FilePath media_path;
PathService::Get(content::DIR_MEDIA_LIBS, &media_path);
if (!media_path.empty())
media::InitializeMediaLibrary(media_path);