Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(36)

Side by Side Diff: chrome/browser/ui/webui/extensions/extension_settings_handler.cc

Issue 271793003: components: Extract pref_registry component out of user_prefs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/tabs/pinned_tab_codec.cc ('k') | chrome/browser/ui/webui/flags_ui.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/extensions/extension_settings_handler.h" 5 #include "chrome/browser/ui/webui/extensions/extension_settings_handler.h"
6 6
7 #include "apps/app_load_service.h" 7 #include "apps/app_load_service.h"
8 #include "apps/app_restore_service.h" 8 #include "apps/app_restore_service.h"
9 #include "apps/app_window.h" 9 #include "apps/app_window.h"
10 #include "apps/app_window_registry.h" 10 #include "apps/app_window_registry.h"
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 #include "chrome/browser/ui/extensions/application_launch.h" 49 #include "chrome/browser/ui/extensions/application_launch.h"
50 #include "chrome/browser/ui/webui/extensions/extension_basic_info.h" 50 #include "chrome/browser/ui/webui/extensions/extension_basic_info.h"
51 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h" 51 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h"
52 #include "chrome/common/chrome_switches.h" 52 #include "chrome/common/chrome_switches.h"
53 #include "chrome/common/chrome_version_info.h" 53 #include "chrome/common/chrome_version_info.h"
54 #include "chrome/common/extensions/extension_constants.h" 54 #include "chrome/common/extensions/extension_constants.h"
55 #include "chrome/common/extensions/features/feature_channel.h" 55 #include "chrome/common/extensions/features/feature_channel.h"
56 #include "chrome/common/extensions/manifest_url_handler.h" 56 #include "chrome/common/extensions/manifest_url_handler.h"
57 #include "chrome/common/pref_names.h" 57 #include "chrome/common/pref_names.h"
58 #include "chrome/common/url_constants.h" 58 #include "chrome/common/url_constants.h"
59 #include "components/user_prefs/pref_registry_syncable.h" 59 #include "components/pref_registry/pref_registry_syncable.h"
60 #include "content/public/browser/notification_service.h" 60 #include "content/public/browser/notification_service.h"
61 #include "content/public/browser/notification_source.h" 61 #include "content/public/browser/notification_source.h"
62 #include "content/public/browser/notification_types.h" 62 #include "content/public/browser/notification_types.h"
63 #include "content/public/browser/render_process_host.h" 63 #include "content/public/browser/render_process_host.h"
64 #include "content/public/browser/render_view_host.h" 64 #include "content/public/browser/render_view_host.h"
65 #include "content/public/browser/site_instance.h" 65 #include "content/public/browser/site_instance.h"
66 #include "content/public/browser/web_contents.h" 66 #include "content/public/browser/web_contents.h"
67 #include "content/public/browser/web_ui.h" 67 #include "content/public/browser/web_ui.h"
68 #include "content/public/browser/web_ui_data_source.h" 68 #include "content/public/browser/web_ui_data_source.h"
69 #include "extensions/browser/blacklist_state.h" 69 #include "extensions/browser/blacklist_state.h"
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after
1284 extension_service_->EnableExtension(extension_id); 1284 extension_service_->EnableExtension(extension_id);
1285 } else { 1285 } else {
1286 ExtensionErrorReporter::GetInstance()->ReportError( 1286 ExtensionErrorReporter::GetInstance()->ReportError(
1287 base::UTF8ToUTF16(JoinString(requirement_errors, ' ')), 1287 base::UTF8ToUTF16(JoinString(requirement_errors, ' ')),
1288 true); // Be noisy. 1288 true); // Be noisy.
1289 } 1289 }
1290 requirements_checker_.reset(); 1290 requirements_checker_.reset();
1291 } 1291 }
1292 1292
1293 } // namespace extensions 1293 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/ui/tabs/pinned_tab_codec.cc ('k') | chrome/browser/ui/webui/flags_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698