From a8e2058011129cbef38bf89834ee01715556b392 Mon Sep 17 00:00:00 2001 From: "brettw@google.com" Date: Fri, 31 Dec 2010 17:18:50 +0000 Subject: Move base/win_util to the base/win directory and use the base::win namespace. Fix up includes, many files including base/win_util don't actually need it. TEST=it compiles BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70341 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome_frame/chrome_tab.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome_frame/chrome_tab.cc') diff --git a/chrome_frame/chrome_tab.cc b/chrome_frame/chrome_tab.cc index 79c846d..b966e5c 100644 --- a/chrome_frame/chrome_tab.cc +++ b/chrome_frame/chrome_tab.cc @@ -347,7 +347,7 @@ HRESULT SetupRunOnce() { // started at next boot. void SetupUserLevelHelper() { // Remove existing run-at-startup entry. - win_util::RemoveCommandFromAutoRun(HKEY_CURRENT_USER, kRunKeyName); + base::win::RemoveCommandFromAutoRun(HKEY_CURRENT_USER, kRunKeyName); // Build the chrome_frame_helper command line. FilePath module_path; @@ -373,7 +373,7 @@ void SetupUserLevelHelper() { if (file_util::PathExists(helper_path)) { // Add new run-at-startup entry. - win_util::AddCommandToAutoRun(HKEY_CURRENT_USER, kRunKeyName, + base::win::AddCommandToAutoRun(HKEY_CURRENT_USER, kRunKeyName, helper_path.value()); // Start new instance. @@ -510,7 +510,7 @@ STDAPI CustomRegistration(UINT reg_flags, BOOL reg, bool is_system) { // that during updates we don't have a time window with no running // helper. Uninstalls and updates will explicitly kill the helper from // within the installer. Unregister existing run-at-startup entry. - win_util::RemoveCommandFromAutoRun(HKEY_CURRENT_USER, kRunKeyName); + base::win::RemoveCommandFromAutoRun(HKEY_CURRENT_USER, kRunKeyName); } } } -- cgit v1.1