Chromium Code Reviews| Index: chrome/browser/ui/app_list/arc/arc_app_launcher.h |
| diff --git a/chrome/browser/ui/app_list/arc/arc_app_launcher.h b/chrome/browser/ui/app_list/arc/arc_app_launcher.h |
| index 613ad2bdf463ce73c2a407c78c44f5c3f087a857..6fae26bce26ac7276737875c246b98013498bb6d 100644 |
| --- a/chrome/browser/ui/app_list/arc/arc_app_launcher.h |
| +++ b/chrome/browser/ui/app_list/arc/arc_app_launcher.h |
| @@ -20,7 +20,8 @@ class ArcAppLauncher : public ArcAppListPrefs::Observer { |
| public: |
| ArcAppLauncher(content::BrowserContext* context, |
|
hidehiko
2017/03/16 01:05:39
Please document what "deferred_launch_allowed" is.
khmel
2017/03/16 16:12:14
Done.
|
| const std::string& app_id, |
| - bool landscape_layout); |
| + bool landscape_layout, |
| + bool deferred_launch_allowed); |
| ~ArcAppLauncher() override; |
| bool app_launched() const { return app_launched_; } |
| @@ -38,7 +39,8 @@ class ArcAppLauncher : public ArcAppListPrefs::Observer { |
| // ARC app id and requested layout. |
| const std::string app_id_; |
| const bool landscape_layout_; |
| - // Flag idicating that ARC app was launched. |
| + const bool deferred_launch_allowed_; |
| + // Flag indicating that ARC app was launched. |
| bool app_launched_ = false; |
| DISALLOW_COPY_AND_ASSIGN(ArcAppLauncher); |