OLD | NEW |
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/management/management_api.h" | 5 #include "chrome/browser/extensions/api/management/management_api.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "chrome/browser/extensions/api/management/management_api_constants.h" | 23 #include "chrome/browser/extensions/api/management/management_api_constants.h" |
24 #include "chrome/browser/extensions/extension_service.h" | 24 #include "chrome/browser/extensions/extension_service.h" |
25 #include "chrome/browser/extensions/extension_system.h" | 25 #include "chrome/browser/extensions/extension_system.h" |
26 #include "chrome/browser/extensions/extension_uninstall_dialog.h" | 26 #include "chrome/browser/extensions/extension_uninstall_dialog.h" |
27 #include "chrome/browser/extensions/launch_util.h" | 27 #include "chrome/browser/extensions/launch_util.h" |
28 #include "chrome/browser/profiles/profile.h" | 28 #include "chrome/browser/profiles/profile.h" |
29 #include "chrome/browser/ui/extensions/application_launch.h" | 29 #include "chrome/browser/ui/extensions/application_launch.h" |
30 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h" | 30 #include "chrome/browser/ui/webui/extensions/extension_icon_source.h" |
31 #include "chrome/common/chrome_utility_messages.h" | 31 #include "chrome/common/chrome_utility_messages.h" |
32 #include "chrome/common/extensions/api/management.h" | 32 #include "chrome/common/extensions/api/management.h" |
| 33 #include "chrome/common/extensions/extension_constants.h" |
33 #include "chrome/common/extensions/extension_icon_set.h" | 34 #include "chrome/common/extensions/extension_icon_set.h" |
34 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" | 35 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" |
35 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" | 36 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" |
36 #include "chrome/common/extensions/manifest_url_handler.h" | 37 #include "chrome/common/extensions/manifest_url_handler.h" |
37 #include "content/public/browser/notification_details.h" | 38 #include "content/public/browser/notification_details.h" |
38 #include "content/public/browser/notification_source.h" | 39 #include "content/public/browser/notification_source.h" |
39 #include "content/public/browser/utility_process_host.h" | 40 #include "content/public/browser/utility_process_host.h" |
40 #include "content/public/browser/utility_process_host_client.h" | 41 #include "content/public/browser/utility_process_host_client.h" |
41 #include "extensions/browser/event_router.h" | 42 #include "extensions/browser/event_router.h" |
42 #include "extensions/browser/management_policy.h" | 43 #include "extensions/browser/management_policy.h" |
(...skipping 681 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
724 ProfileKeyedAPIFactory<ManagementAPI>* ManagementAPI::GetFactoryInstance() { | 725 ProfileKeyedAPIFactory<ManagementAPI>* ManagementAPI::GetFactoryInstance() { |
725 return &g_factory.Get(); | 726 return &g_factory.Get(); |
726 } | 727 } |
727 | 728 |
728 void ManagementAPI::OnListenerAdded(const EventListenerInfo& details) { | 729 void ManagementAPI::OnListenerAdded(const EventListenerInfo& details) { |
729 management_event_router_.reset(new ManagementEventRouter(profile_)); | 730 management_event_router_.reset(new ManagementEventRouter(profile_)); |
730 ExtensionSystem::Get(profile_)->event_router()->UnregisterObserver(this); | 731 ExtensionSystem::Get(profile_)->event_router()->UnregisterObserver(this); |
731 } | 732 } |
732 | 733 |
733 } // namespace extensions | 734 } // namespace extensions |
OLD | NEW |