diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 13:39:05 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-09 13:39:05 +0000 |
commit | 93d8adaf34bc7aba97ca777cac0cd8649a01383d (patch) | |
tree | e7f69079f5d9a545ac6160f70dc6cf4fbfcedf30 /chrome/installer/util/install_util.h | |
parent | 9c8ae8c661753f4a9eac82e0bcea016dadacf252 (diff) | |
download | chromium_src-93d8adaf34bc7aba97ca777cac0cd8649a01383d.zip chromium_src-93d8adaf34bc7aba97ca777cac0cd8649a01383d.tar.gz chromium_src-93d8adaf34bc7aba97ca777cac0cd8649a01383d.tar.bz2 |
Cleanup: Remove calls to deprecated file_util::AppendToPath() in chrome/installer.
BUG=24672
TEST=install Chrome and make it the default browser. verify that filetype (double-click an .html file) and protocol registrations (enter http://www.google.com/ in the Run... dialog) still work.
Review URL: http://codereview.chromium.org/9616046
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@125834 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util/install_util.h')
-rw-r--r-- | chrome/installer/util/install_util.h | 22 |
1 files changed, 1 insertions, 21 deletions
diff --git a/chrome/installer/util/install_util.h b/chrome/installer/util/install_util.h index 20fce08..86753d9 100644 --- a/chrome/installer/util/install_util.h +++ b/chrome/installer/util/install_util.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. // @@ -90,26 +90,6 @@ class InstallUtil { // by either --chrome-sxs or the executable path). static bool IsChromeSxSProcess(); - // Adds all DLLs in install_path whose names are given by dll_names to a - // work item list containing registration or unregistration actions. - // - // install_path: Install path containing the registrable DLLs. - // dll_names: the array of strings containing dll_names - // dll_names_count: the number of DLL names in dll_names - // do_register: whether to register or unregister the DLLs - // user_level_registration: whether to use alternate DLL entry point names to - // perform non-admin registration. - // registration_list: the WorkItemList that this method populates - // - // Returns true if at least one DLL was successfully added to - // registration_list. - static bool BuildDLLRegistrationList(const std::wstring& install_path, - const wchar_t** const dll_names, - int dll_names_count, - bool do_register, - bool user_level_registration, - WorkItemList* registration_list); - // Deletes the registry key at path key_path under the key given by root_key. static bool DeleteRegistryKey(HKEY root_key, const std::wstring& key_path); |