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/platform_app_launcher.h" | 5 #include "chrome/browser/extensions/platform_app_launcher.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/file_util.h" | 8 #include "base/file_util.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
12 #include "base/string_util.h" | 12 #include "base/string_util.h" |
13 #include "base/utf_string_conversions.h" | 13 #include "base/utf_string_conversions.h" |
14 #include "chrome/browser/extensions/api/app_runtime/app_runtime_api.h" | 14 #include "chrome/browser/extensions/api/app_runtime/app_runtime_api.h" |
15 #include "chrome/browser/extensions/api/file_handlers/app_file_handler_util.h" | 15 #include "chrome/browser/extensions/api/file_handlers/app_file_handler_util.h" |
16 #include "chrome/browser/extensions/api/file_system/file_system_api.h" | 16 #include "chrome/browser/extensions/api/file_system/file_system_api.h" |
17 #include "chrome/browser/extensions/event_names.h" | |
18 #include "chrome/browser/extensions/event_router.h" | |
17 #include "chrome/browser/extensions/extension_host.h" | 19 #include "chrome/browser/extensions/extension_host.h" |
18 #include "chrome/browser/extensions/extension_prefs.h" | 20 #include "chrome/browser/extensions/extension_prefs.h" |
19 #include "chrome/browser/extensions/extension_process_manager.h" | 21 #include "chrome/browser/extensions/extension_process_manager.h" |
20 #include "chrome/browser/extensions/extension_service.h" | 22 #include "chrome/browser/extensions/extension_service.h" |
21 #include "chrome/browser/extensions/extension_system.h" | 23 #include "chrome/browser/extensions/extension_system.h" |
22 #include "chrome/browser/extensions/lazy_background_task_queue.h" | 24 #include "chrome/browser/extensions/lazy_background_task_queue.h" |
23 #include "chrome/browser/profiles/profile.h" | 25 #include "chrome/browser/profiles/profile.h" |
24 #include "chrome/browser/ui/extensions/app_metro_infobar_delegate_win.h" | 26 #include "chrome/browser/ui/extensions/app_metro_infobar_delegate_win.h" |
25 #include "chrome/common/extensions/extension.h" | 27 #include "chrome/common/extensions/extension.h" |
26 #include "chrome/common/extensions/extension_messages.h" | 28 #include "chrome/common/extensions/extension_messages.h" |
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
408 const base::FilePath& file_path) { | 410 const base::FilePath& file_path) { |
409 scoped_refptr<PlatformAppPathLauncher> launcher = | 411 scoped_refptr<PlatformAppPathLauncher> launcher = |
410 new PlatformAppPathLauncher(profile, extension, file_path); | 412 new PlatformAppPathLauncher(profile, extension, file_path); |
411 launcher->LaunchWithHandler(handler_id); | 413 launcher->LaunchWithHandler(handler_id); |
412 } | 414 } |
413 | 415 |
414 void RestartPlatformAppWithFileEntries( | 416 void RestartPlatformAppWithFileEntries( |
415 Profile* profile, | 417 Profile* profile, |
416 const Extension* extension, | 418 const Extension* extension, |
417 const std::vector<SavedFileEntry>& file_entries) { | 419 const std::vector<SavedFileEntry>& file_entries) { |
418 scoped_refptr<SavedFileEntryLauncher> launcher = new SavedFileEntryLauncher( | 420 bool listening_to_restart = ExtensionSystem::Get(profile)->event_router()-> |
419 profile, extension, file_entries); | 421 ExtensionHasEventListener(extension->id(), |
420 launcher->Launch(); | 422 event_names::kOnRestarted); |
423 | |
424 if (listening_to_restart) { | |
425 scoped_refptr<SavedFileEntryLauncher> launcher = new SavedFileEntryLauncher( | |
426 profile, extension, file_entries); | |
427 launcher->Launch(); | |
428 } else { | |
429 // If the app isn't listening to onRestarted just launch the app. | |
430 LaunchPlatformApp(profile, extension, NULL, base::FilePath()); | |
not at google - send to devlin
2013/04/19 14:16:52
Should this be LaunchPlatformAppWithNoData?
koz (OOO until 15th September)
2013/04/21 23:33:03
Done.
| |
431 } | |
421 } | 432 } |
422 | 433 |
423 } // namespace extensions | 434 } // namespace extensions |
OLD | NEW |