diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-31 17:18:50 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-31 17:18:50 +0000 |
commit | a8e2058011129cbef38bf89834ee01715556b392 (patch) | |
tree | 00cb892894c52145a66d23048acf2a81f0eed61d /chrome_frame/chrome_tab.cc | |
parent | a1fa87c8042ed2a3f9edd74ad2f313c84b1e407a (diff) | |
download | chromium_src-a8e2058011129cbef38bf89834ee01715556b392.zip chromium_src-a8e2058011129cbef38bf89834ee01715556b392.tar.gz chromium_src-a8e2058011129cbef38bf89834ee01715556b392.tar.bz2 |
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
Diffstat (limited to 'chrome_frame/chrome_tab.cc')
-rw-r--r-- | chrome_frame/chrome_tab.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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); } } } |