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

Unified Diff: ash/shell.h

Issue 26277006: Created ash::FirstRunHelper. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased. Created 7 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/first_run/first_run_helper_impl.cc ('k') | ash/shell.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/shell.h
diff --git a/ash/shell.h b/ash/shell.h
index 750d7d6ecab8940d69cbe87a69b6ef7a9b0663f2..4e8658cf8847315a250e3d8c005096d0d48b9f27 100644
--- a/ash/shell.h
+++ b/ash/shell.h
@@ -27,6 +27,9 @@
class CommandLine;
+namespace app_list {
+class AppListView;
+}
namespace aura {
class EventFilter;
class RootWindow;
@@ -78,6 +81,7 @@ class AutoclickController;
class CapsLockDelegate;
class DesktopBackgroundController;
class DisplayController;
+class FirstRunHelper;
class HighContrastController;
class Launcher;
class LauncherDelegate;
@@ -234,6 +238,9 @@ class ASH_EXPORT Shell
// Returns app list window or NULL if it is not visible.
aura::Window* GetAppListWindow();
+ // Returns app list view or NULL if it is not visible.
+ app_list::AppListView* GetAppListView();
+
// Returns true if a system-modal dialog window is currently open.
bool IsSystemModalWindowOpen() const;
@@ -496,6 +503,12 @@ class ASH_EXPORT Shell
return is_touch_hud_projection_enabled_;
}
+#if defined(OS_CHROMEOS)
+ // Creates instance of FirstRunHelper. Caller is responsible for deleting
+ // returned object.
+ ash::FirstRunHelper* CreateFirstRunHelper();
+#endif // defined(OS_CHROMEOS)
+
private:
FRIEND_TEST_ALL_PREFIXES(ExtendedDesktopTest, TestCursor);
FRIEND_TEST_ALL_PREFIXES(WindowManagerTest, MouseEventCursors);
« no previous file with comments | « ash/first_run/first_run_helper_impl.cc ('k') | ash/shell.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698