| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 SHORTCUTS | 49 SHORTCUTS |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 // Bit vector for Resettable enum. | 52 // Bit vector for Resettable enum. |
| 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 ~ProfileResetter() override; |
| 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. |accepted_send_feedback| | 63 // settings. |default_settings| shouldn't be NULL. |accepted_send_feedback| |
| 64 // identifies whether the user accepted to send feedback or not. | 64 // identifies whether the user accepted to send feedback or not. |
| 65 void Reset(ResettableFlags resettable_flags, | 65 void Reset(ResettableFlags resettable_flags, |
| 66 scoped_ptr<BrandcodedDefaultSettings> master_settings, | 66 scoped_ptr<BrandcodedDefaultSettings> master_settings, |
| 67 bool accepted_send_feedback, | 67 bool accepted_send_feedback, |
| 68 const base::Closure& callback); | 68 const base::Closure& callback); |
| 69 | 69 |
| 70 bool IsActive() const; | 70 bool IsActive() const; |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 // Marks |resettable| as done and triggers |callback_| if all pending jobs | 73 // Marks |resettable| as done and triggers |callback_| if all pending jobs |
| 74 // have completed. | 74 // have completed. |
| 75 void MarkAsDone(Resettable resettable); | 75 void MarkAsDone(Resettable resettable); |
| 76 | 76 |
| 77 void ResetDefaultSearchEngine(); | 77 void ResetDefaultSearchEngine(); |
| 78 void ResetHomepage(); | 78 void ResetHomepage(); |
| 79 void ResetContentSettings(); | 79 void ResetContentSettings(); |
| 80 void ResetCookiesAndSiteData(); | 80 void ResetCookiesAndSiteData(); |
| 81 void ResetExtensions(); | 81 void ResetExtensions(); |
| 82 void ResetStartupPages(); | 82 void ResetStartupPages(); |
| 83 void ResetPinnedTabs(); | 83 void ResetPinnedTabs(); |
| 84 void ResetShortcuts(); | 84 void ResetShortcuts(); |
| 85 | 85 |
| 86 // BrowsingDataRemover::Observer: | 86 // BrowsingDataRemover::Observer: |
| 87 virtual void OnBrowsingDataRemoverDone() override; | 87 void OnBrowsingDataRemoverDone() override; |
| 88 | 88 |
| 89 // Callback for when TemplateURLService has loaded. | 89 // Callback for when TemplateURLService has loaded. |
| 90 void OnTemplateURLServiceLoaded(); | 90 void OnTemplateURLServiceLoaded(); |
| 91 | 91 |
| 92 Profile* const profile_; | 92 Profile* const profile_; |
| 93 scoped_ptr<BrandcodedDefaultSettings> master_settings_; | 93 scoped_ptr<BrandcodedDefaultSettings> master_settings_; |
| 94 TemplateURLService* template_url_service_; | 94 TemplateURLService* template_url_service_; |
| 95 | 95 |
| 96 // Flags of a Resetable indicating which reset operations we are still waiting | 96 // Flags of a Resetable indicating which reset operations we are still waiting |
| 97 // for. | 97 // for. |
| (...skipping 18 matching lines...) Expand all Loading... |
| 116 | 116 |
| 117 typedef base::RefCountedData<base::CancellationFlag> SharedCancellationFlag; | 117 typedef base::RefCountedData<base::CancellationFlag> SharedCancellationFlag; |
| 118 | 118 |
| 119 // On Windows returns all the shortcuts which launch Chrome and corresponding | 119 // On Windows returns all the shortcuts which launch Chrome and corresponding |
| 120 // arguments. |cancel| can be passed to abort the operation earlier. | 120 // arguments. |cancel| can be passed to abort the operation earlier. |
| 121 // Call on FILE thread. | 121 // Call on FILE thread. |
| 122 std::vector<ShortcutCommand> GetChromeLaunchShortcuts( | 122 std::vector<ShortcutCommand> GetChromeLaunchShortcuts( |
| 123 const scoped_refptr<SharedCancellationFlag>& cancel); | 123 const scoped_refptr<SharedCancellationFlag>& cancel); |
| 124 | 124 |
| 125 #endif // CHROME_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ | 125 #endif // CHROME_BROWSER_PROFILE_RESETTER_PROFILE_RESETTER_H_ |
| OLD | NEW |