| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "apps/app_shim/extension_app_shim_handler_mac.h" | 5 #include "chrome/browser/apps/app_shim/extension_app_shim_handler_mac.h" |
| 6 | 6 |
| 7 #include "apps/app_lifetime_monitor_factory.h" | 7 #include "apps/app_lifetime_monitor_factory.h" |
| 8 #include "apps/app_shim/app_shim_host_manager_mac.h" | |
| 9 #include "apps/app_shim/app_shim_messages.h" | |
| 10 #include "apps/launcher.h" | 8 #include "apps/launcher.h" |
| 11 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
| 12 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "chrome/browser/apps/app_shim/app_shim_host_manager_mac.h" |
| 12 #include "chrome/browser/apps/app_shim/app_shim_messages.h" |
| 13 #include "chrome/browser/browser_process.h" | 13 #include "chrome/browser/browser_process.h" |
| 14 #include "chrome/browser/chrome_notification_types.h" | 14 #include "chrome/browser/chrome_notification_types.h" |
| 15 #include "chrome/browser/profiles/profile.h" | 15 #include "chrome/browser/profiles/profile.h" |
| 16 #include "chrome/browser/profiles/profile_manager.h" | 16 #include "chrome/browser/profiles/profile_manager.h" |
| 17 #include "chrome/browser/ui/extensions/extension_enable_flow.h" | 17 #include "chrome/browser/ui/extensions/extension_enable_flow.h" |
| 18 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" | 18 #include "chrome/browser/ui/extensions/extension_enable_flow_delegate.h" |
| 19 #include "chrome/browser/ui/webui/ntp/core_app_launcher_handler.h" | 19 #include "chrome/browser/ui/webui/ntp/core_app_launcher_handler.h" |
| 20 #include "chrome/browser/web_applications/web_app_mac.h" | 20 #include "chrome/browser/web_applications/web_app_mac.h" |
| 21 #include "chrome/common/extensions/extension_constants.h" | 21 #include "chrome/common/extensions/extension_constants.h" |
| 22 #include "components/crx_file/id_util.h" | 22 #include "components/crx_file/id_util.h" |
| (...skipping 525 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 548 if (hosts_.empty()) | 548 if (hosts_.empty()) |
| 549 delegate_->MaybeTerminate(); | 549 delegate_->MaybeTerminate(); |
| 550 } | 550 } |
| 551 | 551 |
| 552 void ExtensionAppShimHandler::OnAppStop(Profile* profile, | 552 void ExtensionAppShimHandler::OnAppStop(Profile* profile, |
| 553 const std::string& app_id) {} | 553 const std::string& app_id) {} |
| 554 | 554 |
| 555 void ExtensionAppShimHandler::OnChromeTerminating() {} | 555 void ExtensionAppShimHandler::OnChromeTerminating() {} |
| 556 | 556 |
| 557 } // namespace apps | 557 } // namespace apps |
| OLD | NEW |