OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "chrome/browser/ui/webui/options/website_settings_handler.h" | 5 #include "chrome/browser/ui/webui/options/website_settings_handler.h" |
6 | 6 |
7 #include "chrome/browser/content_settings/content_settings_utils.h" | |
8 #include "chrome/browser/content_settings/host_content_settings_map.h" | |
9 #include "chrome/browser/extensions/extension_service.h" | 7 #include "chrome/browser/extensions/extension_service.h" |
10 #include "chrome/browser/profiles/profile.h" | 8 #include "chrome/browser/profiles/profile.h" |
11 #include "chrome/browser/ui/browser.h" | 9 #include "chrome/browser/ui/browser.h" |
12 #include "chrome/browser/ui/browser_iterator.h" | 10 #include "chrome/browser/ui/browser_iterator.h" |
13 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 11 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
14 #include "chrome/grit/generated_resources.h" | 12 #include "chrome/grit/generated_resources.h" |
| 13 #include "components/content_settings/core/browser/content_settings_utils.h" |
| 14 #include "components/content_settings/core/browser/host_content_settings_map.h" |
15 #include "components/power/origin_power_map.h" | 15 #include "components/power/origin_power_map.h" |
16 #include "components/power/origin_power_map_factory.h" | 16 #include "components/power/origin_power_map_factory.h" |
17 #include "content/public/browser/dom_storage_context.h" | 17 #include "content/public/browser/dom_storage_context.h" |
18 #include "content/public/browser/storage_partition.h" | 18 #include "content/public/browser/storage_partition.h" |
19 #include "content/public/browser/user_metrics.h" | 19 #include "content/public/browser/user_metrics.h" |
20 #include "content/public/browser/web_contents.h" | 20 #include "content/public/browser/web_contents.h" |
21 #include "content/public/browser/web_ui.h" | 21 #include "content/public/browser/web_ui.h" |
22 #include "extensions/browser/app_window/app_window_registry.h" | 22 #include "extensions/browser/app_window/app_window_registry.h" |
23 #include "extensions/browser/extension_registry.h" | 23 #include "extensions/browser/extension_registry.h" |
24 #include "extensions/browser/extension_system.h" | 24 #include "extensions/browser/extension_system.h" |
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
776 #if defined(OS_CHROMEOS) | 776 #if defined(OS_CHROMEOS) |
777 // Chrome OS special case: in Guest mode settings are opened in Incognito | 777 // Chrome OS special case: in Guest mode settings are opened in Incognito |
778 // mode, so we need original profile to actually modify settings. | 778 // mode, so we need original profile to actually modify settings. |
779 if (user_manager::UserManager::Get()->IsLoggedInAsGuest()) | 779 if (user_manager::UserManager::Get()->IsLoggedInAsGuest()) |
780 profile = profile->GetOriginalProfile(); | 780 profile = profile->GetOriginalProfile(); |
781 #endif | 781 #endif |
782 return profile; | 782 return profile; |
783 } | 783 } |
784 | 784 |
785 } // namespace options | 785 } // namespace options |
OLD | NEW |