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

Side by Side Diff: chrome/browser/extensions/api/developer_private/developer_private_api.cc

Issue 229813002: Move extensions manifest IconsHandler to //extensions (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review comments (icons-handler) Created 6 years, 8 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
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/extensions/api/developer_private/developer_private_api. h" 5 #include "chrome/browser/extensions/api/developer_private/developer_private_api. 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 22 matching lines...) Expand all
33 #include "chrome/browser/extensions/updater/extension_updater.h" 33 #include "chrome/browser/extensions/updater/extension_updater.h"
34 #include "chrome/browser/platform_util.h" 34 #include "chrome/browser/platform_util.h"
35 #include "chrome/browser/profiles/profile.h" 35 #include "chrome/browser/profiles/profile.h"
36 #include "chrome/browser/sync_file_system/drive_backend_v1/drive_file_sync_servi ce.h" 36 #include "chrome/browser/sync_file_system/drive_backend_v1/drive_file_sync_servi ce.h"
37 #include "chrome/browser/sync_file_system/syncable_file_system_util.h" 37 #include "chrome/browser/sync_file_system/syncable_file_system_util.h"
38 #include "chrome/browser/ui/chrome_select_file_policy.h" 38 #include "chrome/browser/ui/chrome_select_file_policy.h"
39 #include "chrome/browser/ui/webui/extensions/extension_error_ui_util.h" 39 #include "chrome/browser/ui/webui/extensions/extension_error_ui_util.h"
40 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h" 40 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h"
41 #include "chrome/common/extensions/api/developer_private.h" 41 #include "chrome/common/extensions/api/developer_private.h"
42 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" 42 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h"
43 #include "chrome/common/extensions/manifest_handlers/icons_handler.h"
44 #include "chrome/common/extensions/manifest_url_handler.h" 43 #include "chrome/common/extensions/manifest_url_handler.h"
45 #include "chrome/common/url_constants.h" 44 #include "chrome/common/url_constants.h"
46 #include "content/public/browser/browser_thread.h" 45 #include "content/public/browser/browser_thread.h"
47 #include "content/public/browser/notification_service.h" 46 #include "content/public/browser/notification_service.h"
48 #include "content/public/browser/render_process_host.h" 47 #include "content/public/browser/render_process_host.h"
49 #include "content/public/browser/render_view_host.h" 48 #include "content/public/browser/render_view_host.h"
50 #include "content/public/browser/site_instance.h" 49 #include "content/public/browser/site_instance.h"
51 #include "content/public/browser/storage_partition.h" 50 #include "content/public/browser/storage_partition.h"
52 #include "content/public/browser/web_contents.h" 51 #include "content/public/browser/web_contents.h"
53 #include "extensions/browser/extension_error.h" 52 #include "extensions/browser/extension_error.h"
54 #include "extensions/browser/extension_prefs.h" 53 #include "extensions/browser/extension_prefs.h"
55 #include "extensions/browser/extension_registry.h" 54 #include "extensions/browser/extension_registry.h"
56 #include "extensions/browser/extension_system.h" 55 #include "extensions/browser/extension_system.h"
57 #include "extensions/browser/management_policy.h" 56 #include "extensions/browser/management_policy.h"
58 #include "extensions/browser/view_type_utils.h" 57 #include "extensions/browser/view_type_utils.h"
59 #include "extensions/common/constants.h" 58 #include "extensions/common/constants.h"
60 #include "extensions/common/extension_resource.h" 59 #include "extensions/common/extension_resource.h"
61 #include "extensions/common/extension_set.h" 60 #include "extensions/common/extension_set.h"
62 #include "extensions/common/install_warning.h" 61 #include "extensions/common/install_warning.h"
63 #include "extensions/common/manifest_handlers/background_info.h" 62 #include "extensions/common/manifest_handlers/background_info.h"
63 #include "extensions/common/manifest_handlers/icons_handler.h"
64 #include "extensions/common/manifest_handlers/incognito_info.h" 64 #include "extensions/common/manifest_handlers/incognito_info.h"
65 #include "extensions/common/manifest_handlers/offline_enabled_info.h" 65 #include "extensions/common/manifest_handlers/offline_enabled_info.h"
66 #include "extensions/common/switches.h" 66 #include "extensions/common/switches.h"
67 #include "grit/chromium_strings.h" 67 #include "grit/chromium_strings.h"
68 #include "grit/generated_resources.h" 68 #include "grit/generated_resources.h"
69 #include "grit/theme_resources.h" 69 #include "grit/theme_resources.h"
70 #include "net/base/net_util.h" 70 #include "net/base/net_util.h"
71 #include "ui/base/l10n/l10n_util.h" 71 #include "ui/base/l10n/l10n_util.h"
72 #include "ui/base/resource/resource_bundle.h" 72 #include "ui/base/resource/resource_bundle.h"
73 #include "ui/base/webui/web_ui_util.h" 73 #include "ui/base/webui/web_ui_util.h"
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
1352 } 1352 }
1353 1353
1354 error_ui_util::HandleOpenDevTools(dict); 1354 error_ui_util::HandleOpenDevTools(dict);
1355 1355
1356 return true; 1356 return true;
1357 } 1357 }
1358 1358
1359 } // namespace api 1359 } // namespace api
1360 1360
1361 } // namespace extensions 1361 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/offline/offline_load_page.cc ('k') | chrome/browser/extensions/api/management/management_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698