| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ | 5 #ifndef CHROME_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ |
| 6 #define CHROME_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ | 6 #define CHROME_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ |
| 7 | 7 |
| 8 #include <utility> | 8 #include <utility> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 typedef uint32 ResettableFlags; | 53 typedef uint32 ResettableFlags; |
| 54 | 54 |
| 55 COMPILE_ASSERT(sizeof(ResettableFlags) == sizeof(Resettable), | 55 COMPILE_ASSERT(sizeof(ResettableFlags) == sizeof(Resettable), |
| 56 type_ResettableFlags_doesnt_match_Resettable); | 56 type_ResettableFlags_doesnt_match_Resettable); |
| 57 | 57 |
| 58 explicit ProfileResetter(Profile* profile); | 58 explicit ProfileResetter(Profile* profile); |
| 59 virtual ~ProfileResetter(); | 59 virtual ~ProfileResetter(); |
| 60 | 60 |
| 61 // Resets |resettable_flags| and calls |callback| on the UI thread on | 61 // Resets |resettable_flags| and calls |callback| on the UI thread on |
| 62 // completion. |default_settings| allows the caller to specify some default | 62 // completion. |default_settings| allows the caller to specify some default |
| 63 // settings. |default_settings| shouldn't be NULL. | 63 // settings. |default_settings| shouldn't be NULL. |accepted_send_feedback| |
| 64 // identifies whether the user accepted to send feedback or not. |
| 64 void Reset(ResettableFlags resettable_flags, | 65 void Reset(ResettableFlags resettable_flags, |
| 65 scoped_ptr<BrandcodedDefaultSettings> master_settings, | 66 scoped_ptr<BrandcodedDefaultSettings> master_settings, |
| 67 bool accepted_send_feedback, |
| 66 const base::Closure& callback); | 68 const base::Closure& callback); |
| 67 | 69 |
| 68 bool IsActive() const; | 70 bool IsActive() const; |
| 69 | 71 |
| 70 private: | 72 private: |
| 71 // Marks |resettable| as done and triggers |callback_| if all pending jobs | 73 // Marks |resettable| as done and triggers |callback_| if all pending jobs |
| 72 // have completed. | 74 // have completed. |
| 73 void MarkAsDone(Resettable resettable); | 75 void MarkAsDone(Resettable resettable); |
| 74 | 76 |
| 75 void ResetDefaultSearchEngine(); | 77 void ResetDefaultSearchEngine(); |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 | 116 |
| 115 typedef base::RefCountedData<base::CancellationFlag> SharedCancellationFlag; | 117 typedef base::RefCountedData<base::CancellationFlag> SharedCancellationFlag; |
| 116 | 118 |
| 117 // On Windows returns all the shortcuts which launch Chrome and corresponding | 119 // On Windows returns all the shortcuts which launch Chrome and corresponding |
| 118 // arguments. |cancel| can be passed to abort the operation earlier. | 120 // arguments. |cancel| can be passed to abort the operation earlier. |
| 119 // Call on FILE thread. | 121 // Call on FILE thread. |
| 120 std::vector<ShortcutCommand> GetChromeLaunchShortcuts( | 122 std::vector<ShortcutCommand> GetChromeLaunchShortcuts( |
| 121 const scoped_refptr<SharedCancellationFlag>& cancel); | 123 const scoped_refptr<SharedCancellationFlag>& cancel); |
| 122 | 124 |
| 123 #endif // CHROME_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ | 125 #endif // CHROME_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ |
| OLD | NEW |