| 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 15 matching lines...) Expand all Loading... |
| 26 #include "chrome/browser/extensions/extension_uninstall_dialog.h" | 26 #include "chrome/browser/extensions/extension_uninstall_dialog.h" |
| 27 #include "chrome/browser/extensions/management_policy.h" | 27 #include "chrome/browser/extensions/management_policy.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_icon_set.h" | 33 #include "chrome/common/extensions/extension_icon_set.h" |
| 34 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" | 34 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h" |
| 35 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" | 35 #include "chrome/common/extensions/manifest_handlers/icons_handler.h" |
| 36 #include "chrome/common/extensions/manifest_handlers/offline_enabled_info.h" | |
| 37 #include "chrome/common/extensions/manifest_url_handler.h" | 36 #include "chrome/common/extensions/manifest_url_handler.h" |
| 38 #include "content/public/browser/notification_details.h" | 37 #include "content/public/browser/notification_details.h" |
| 39 #include "content/public/browser/notification_source.h" | 38 #include "content/public/browser/notification_source.h" |
| 40 #include "content/public/browser/utility_process_host.h" | 39 #include "content/public/browser/utility_process_host.h" |
| 41 #include "content/public/browser/utility_process_host_client.h" | 40 #include "content/public/browser/utility_process_host_client.h" |
| 42 #include "extensions/browser/event_router.h" | 41 #include "extensions/browser/event_router.h" |
| 43 #include "extensions/common/constants.h" | 42 #include "extensions/common/constants.h" |
| 44 #include "extensions/common/error_utils.h" | 43 #include "extensions/common/error_utils.h" |
| 45 #include "extensions/common/extension.h" | 44 #include "extensions/common/extension.h" |
| 45 #include "extensions/common/manifest_handlers/offline_enabled_info.h" |
| 46 #include "extensions/common/permissions/permission_set.h" | 46 #include "extensions/common/permissions/permission_set.h" |
| 47 #include "extensions/common/permissions/permissions_data.h" | 47 #include "extensions/common/permissions/permissions_data.h" |
| 48 #include "extensions/common/url_pattern.h" | 48 #include "extensions/common/url_pattern.h" |
| 49 | 49 |
| 50 #if !defined(OS_ANDROID) | 50 #if !defined(OS_ANDROID) |
| 51 #include "chrome/browser/ui/webui/ntp/core_app_launcher_handler.h" | 51 #include "chrome/browser/ui/webui/ntp/core_app_launcher_handler.h" |
| 52 #endif | 52 #endif |
| 53 | 53 |
| 54 using base::IntToString; | 54 using base::IntToString; |
| 55 using content::BrowserThread; | 55 using content::BrowserThread; |
| (...skipping 668 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 724 ProfileKeyedAPIFactory<ManagementAPI>* ManagementAPI::GetFactoryInstance() { | 724 ProfileKeyedAPIFactory<ManagementAPI>* ManagementAPI::GetFactoryInstance() { |
| 725 return &g_factory.Get(); | 725 return &g_factory.Get(); |
| 726 } | 726 } |
| 727 | 727 |
| 728 void ManagementAPI::OnListenerAdded(const EventListenerInfo& details) { | 728 void ManagementAPI::OnListenerAdded(const EventListenerInfo& details) { |
| 729 management_event_router_.reset(new ManagementEventRouter(profile_)); | 729 management_event_router_.reset(new ManagementEventRouter(profile_)); |
| 730 ExtensionSystem::Get(profile_)->event_router()->UnregisterObserver(this); | 730 ExtensionSystem::Get(profile_)->event_router()->UnregisterObserver(this); |
| 731 } | 731 } |
| 732 | 732 |
| 733 } // namespace extensions | 733 } // namespace extensions |
| OLD | NEW |