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

Side by Side Diff: apps/launcher.cc

Issue 2934513003: Changes in app.window and app.runtime to support lock screen note taking (Closed)
Patch Set: . Created 3 years, 6 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
OLDNEW
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/launcher.h" 5 #include "apps/launcher.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <set> 8 #include <set>
9 #include <utility> 9 #include <utility>
10 10
(...skipping 19 matching lines...) Expand all
30 #include "extensions/browser/event_router.h" 30 #include "extensions/browser/event_router.h"
31 #include "extensions/browser/extension_host.h" 31 #include "extensions/browser/extension_host.h"
32 #include "extensions/browser/extension_prefs.h" 32 #include "extensions/browser/extension_prefs.h"
33 #include "extensions/browser/extension_registry.h" 33 #include "extensions/browser/extension_registry.h"
34 #include "extensions/browser/granted_file_entry.h" 34 #include "extensions/browser/granted_file_entry.h"
35 #include "extensions/browser/lazy_background_task_queue.h" 35 #include "extensions/browser/lazy_background_task_queue.h"
36 #include "extensions/browser/process_manager.h" 36 #include "extensions/browser/process_manager.h"
37 #include "extensions/common/api/app_runtime.h" 37 #include "extensions/common/api/app_runtime.h"
38 #include "extensions/common/extension.h" 38 #include "extensions/common/extension.h"
39 #include "extensions/common/manifest_handlers/kiosk_mode_info.h" 39 #include "extensions/common/manifest_handlers/kiosk_mode_info.h"
40 #include "extensions/common/permissions/api_permission.h"
41 #include "extensions/common/permissions/permissions_data.h"
40 #include "net/base/filename_util.h" 42 #include "net/base/filename_util.h"
41 #include "url/gurl.h" 43 #include "url/gurl.h"
42 44
43 #if defined(OS_CHROMEOS) 45 #if defined(OS_CHROMEOS)
44 #include "components/user_manager/user_manager.h" 46 #include "components/user_manager/user_manager.h"
45 #endif 47 #endif
46 48
47 namespace app_runtime = extensions::api::app_runtime; 49 namespace app_runtime = extensions::api::app_runtime;
48 50
49 using content::BrowserThread; 51 using content::BrowserThread;
(...skipping 377 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 scoped_refptr<PlatformAppPathLauncher> launcher = 429 scoped_refptr<PlatformAppPathLauncher> launcher =
428 new PlatformAppPathLauncher(context, app, file_path); 430 new PlatformAppPathLauncher(context, app, file_path);
429 launcher->Launch(); 431 launcher->Launch();
430 } 432 }
431 433
432 void LaunchPlatformAppWithAction( 434 void LaunchPlatformAppWithAction(
433 content::BrowserContext* context, 435 content::BrowserContext* context,
434 const extensions::Extension* app, 436 const extensions::Extension* app,
435 std::unique_ptr<app_runtime::ActionData> action_data, 437 std::unique_ptr<app_runtime::ActionData> action_data,
436 const base::FilePath& file_path) { 438 const base::FilePath& file_path) {
439 if (action_data && action_data->is_lock_screen_action &&
440 *action_data->is_lock_screen_action &&
441 !app->permissions_data()->HasAPIPermission(
442 extensions::APIPermission::kLockScreen)) {
443 NOTREACHED() << "Launching lock screen action handler requires lockScreen "
Devlin 2017/06/14 19:13:47 Why do we use NOTREACHED(); return; here instead o
tbarzic 2017/06/14 19:48:47 I guess CHECK would be fine too.
444 << "permission.";
445 return;
446 }
437 scoped_refptr<PlatformAppPathLauncher> launcher = 447 scoped_refptr<PlatformAppPathLauncher> launcher =
438 new PlatformAppPathLauncher(context, app, file_path); 448 new PlatformAppPathLauncher(context, app, file_path);
439 launcher->set_action_data(std::move(action_data)); 449 launcher->set_action_data(std::move(action_data));
440 launcher->set_launch_source(extensions::AppLaunchSource::SOURCE_UNTRACKED); 450 launcher->set_launch_source(extensions::AppLaunchSource::SOURCE_UNTRACKED);
441 launcher->Launch(); 451 launcher->Launch();
442 } 452 }
443 453
444 void LaunchPlatformApp(content::BrowserContext* context, 454 void LaunchPlatformApp(content::BrowserContext* context,
445 const Extension* app, 455 const Extension* app,
446 extensions::AppLaunchSource source) { 456 extensions::AppLaunchSource source) {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
486 void LaunchPlatformAppWithUrl(content::BrowserContext* context, 496 void LaunchPlatformAppWithUrl(content::BrowserContext* context,
487 const Extension* app, 497 const Extension* app,
488 const std::string& handler_id, 498 const std::string& handler_id,
489 const GURL& url, 499 const GURL& url,
490 const GURL& referrer_url) { 500 const GURL& referrer_url) {
491 AppRuntimeEventRouter::DispatchOnLaunchedEventWithUrl( 501 AppRuntimeEventRouter::DispatchOnLaunchedEventWithUrl(
492 context, app, handler_id, url, referrer_url); 502 context, app, handler_id, url, referrer_url);
493 } 503 }
494 504
495 } // namespace apps 505 } // namespace apps
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698