| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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_SITE_SETTINGS_HANDLER_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_SETTINGS_SITE_SETTINGS_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_SITE_SETTINGS_HANDLER_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_SETTINGS_SITE_SETTINGS_HANDLER_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "chrome/browser/storage/storage_info_fetcher.h" | 10 #include "chrome/browser/storage/storage_info_fetcher.h" |
| 11 #include "chrome/browser/ui/webui/settings/md_settings_ui.h" | 11 #include "chrome/browser/ui/webui/settings/settings_page_ui_handler.h" |
| 12 | 12 |
| 13 class Profile; | 13 class Profile; |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class ListValue; | 16 class ListValue; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace settings { | 19 namespace settings { |
| 20 | 20 |
| 21 // Chrome "ContentSettings" settings page UI handler. | 21 // Chrome "ContentSettings" settings page UI handler. |
| (...skipping 27 matching lines...) Expand all Loading... |
| 49 | 49 |
| 50 // The origin for which to clear usage. | 50 // The origin for which to clear usage. |
| 51 std::string clearing_origin_; | 51 std::string clearing_origin_; |
| 52 | 52 |
| 53 DISALLOW_COPY_AND_ASSIGN(SiteSettingsHandler); | 53 DISALLOW_COPY_AND_ASSIGN(SiteSettingsHandler); |
| 54 }; | 54 }; |
| 55 | 55 |
| 56 } // namespace settings | 56 } // namespace settings |
| 57 | 57 |
| 58 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_SITE_SETTINGS_HANDLER_H_ | 58 #endif // CHROME_BROWSER_UI_WEBUI_SETTINGS_SITE_SETTINGS_HANDLER_H_ |
| OLD | NEW |