| 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 <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.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/ui/webui/settings/md_settings_ui.h" | 15 #include "chrome/browser/ui/webui/settings/settings_page_ui_handler.h" |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class DictionaryValue; | 18 class DictionaryValue; |
| 19 class ListValue; | 19 class ListValue; |
| 20 } // namespace base | 20 } // namespace base |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 class WebUIDataSource; | 23 class WebUIDataSource; |
| 24 } | 24 } |
| 25 | 25 |
| (...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 std::string brandcode_; | 100 std::string brandcode_; |
| 101 | 101 |
| 102 base::WeakPtrFactory<ResetSettingsHandler> weak_ptr_factory_; | 102 base::WeakPtrFactory<ResetSettingsHandler> weak_ptr_factory_; |
| 103 | 103 |
| 104 DISALLOW_COPY_AND_ASSIGN(ResetSettingsHandler); | 104 DISALLOW_COPY_AND_ASSIGN(ResetSettingsHandler); |
| 105 }; | 105 }; |
| 106 | 106 |
| 107 } // namespace settings | 107 } // namespace settings |
| 108 | 108 |
| 109 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ | 109 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_RESET_SETTINGS_HANDLER_H_ |
| OLD | NEW |