| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "build/build_config.h" | 14 #include "build/build_config.h" |
| 15 #include "chrome/browser/profile_resetter/profile_reset_report.pb.h" | 15 #include "chrome/browser/profile_resetter/profile_reset_report.pb.h" |
| 16 #include "chrome/browser/ui/webui/settings/settings_page_ui_handler.h" | 16 #include "chrome/browser/ui/webui/settings/settings_page_ui_handler.h" |
| 17 | 17 |
| 18 namespace base { | 18 namespace base { |
| 19 class DictionaryValue; | |
| 20 class ListValue; | 19 class ListValue; |
| 21 } // namespace base | 20 } // namespace base |
| 22 | 21 |
| 23 namespace content { | 22 namespace content { |
| 24 class WebUIDataSource; | 23 class WebUIDataSource; |
| 25 } | 24 } |
| 26 | 25 |
| 27 class BrandcodeConfigFetcher; | 26 class BrandcodeConfigFetcher; |
| 28 class Profile; | 27 class Profile; |
| 29 class ProfileResetter; | 28 class ProfileResetter; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 std::string brandcode_; | 111 std::string brandcode_; |
| 113 | 112 |
| 114 base::WeakPtrFactory<ResetSettingsHandler> weak_ptr_factory_; | 113 base::WeakPtrFactory<ResetSettingsHandler> weak_ptr_factory_; |
| 115 | 114 |
| 116 DISALLOW_COPY_AND_ASSIGN(ResetSettingsHandler); | 115 DISALLOW_COPY_AND_ASSIGN(ResetSettingsHandler); |
| 117 }; | 116 }; |
| 118 | 117 |
| 119 } // namespace settings | 118 } // namespace settings |
| 120 | 119 |
| 121 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ | 120 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ |
| OLD | NEW |