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

Side by Side Diff: chrome/installer/util/self_reg_work_item.h

Issue 6109006: Fix a SelfRegWorkItem bug that causes it to ignore the ignore_failures_ flag.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 11 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/installer/util/work_item.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ 5 #ifndef CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__
6 #define CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ 6 #define CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__
7 #pragma once 7 #pragma once
8 8
9 #include <windows.h> 9 #include <windows.h>
10 #include <string> 10 #include <string>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 // The path to the dll to be registered. 42 // The path to the dll to be registered.
43 std::wstring dll_path_; 43 std::wstring dll_path_;
44 44
45 // Whether this work item will register or unregister the dll. The rollback 45 // Whether this work item will register or unregister the dll. The rollback
46 // action just inverts this parameter. 46 // action just inverts this parameter.
47 bool do_register_; 47 bool do_register_;
48 48
49 // Whether to use alternate export names on the DLL that will perform 49 // Whether to use alternate export names on the DLL that will perform
50 // user level registration. 50 // user level registration.
51 bool user_level_registration_; 51 bool user_level_registration_;
52
53 // Specifies whether this work item my fail to complete and yet still
54 // return true from Do(). Use this when making a best effort at unregistering
55 // old Dlls.
56 bool ignore_failure_;
57 }; 52 };
58 53
59 #endif // CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__ 54 #endif // CHROME_INSTALLER_UTIL_SELF_REG_WORK_ITEM_H__
OLDNEW
« no previous file with comments | « no previous file | chrome/installer/util/work_item.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698