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

Unified Diff: chrome/browser/component_updater/widevine_cdm_component_installer.cc

Issue 18332014: Move Copy* into the base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: windows Created 7 years, 5 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
Index: chrome/browser/component_updater/widevine_cdm_component_installer.cc
diff --git a/chrome/browser/component_updater/widevine_cdm_component_installer.cc b/chrome/browser/component_updater/widevine_cdm_component_installer.cc
index bbfebbd36114c7c7bf63d300cf451d9649bbaedd..fe69eda67b7d8d150fddac32f5d665212260df7c 100644
--- a/chrome/browser/component_updater/widevine_cdm_component_installer.cc
+++ b/chrome/browser/component_updater/widevine_cdm_component_installer.cc
@@ -239,7 +239,7 @@ bool WidevineCdmComponentInstaller::Install(
base::FilePath adapter_install_path =
install_path.AppendASCII(kWidevineCdmAdapterFileName);
- if (!file_util::CopyFile(adapter_source_path, adapter_install_path))
+ if (!base::CopyFile(adapter_source_path, adapter_install_path))
return false;
// Installation is done. Now register the Widevine CDM with chrome.

Powered by Google App Engine
This is Rietveld 408576698