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

Side by Side Diff: ash/launcher/launcher_types.h

Issue 12288012: Showing launcher items for windowed v1 apps - pinned or not. Also - don't show windowed v1 apps in … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing build breakage with clang Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « ash/launcher/launcher_navigator.cc ('k') | ash/launcher/launcher_view.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef ASH_LAUNCHER_LAUNCHER_TYPES_H_ 5 #ifndef ASH_LAUNCHER_LAUNCHER_TYPES_H_
6 #define ASH_LAUNCHER_LAUNCHER_TYPES_H_ 6 #define ASH_LAUNCHER_LAUNCHER_TYPES_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "ash/ash_export.h" 10 #include "ash/ash_export.h"
(...skipping 22 matching lines...) Expand all
33 TYPE_APP_SHORTCUT, 33 TYPE_APP_SHORTCUT,
34 34
35 // Toggles visiblity of the app list. 35 // Toggles visiblity of the app list.
36 TYPE_APP_LIST, 36 TYPE_APP_LIST,
37 37
38 // The browser shortcut button. 38 // The browser shortcut button.
39 TYPE_BROWSER_SHORTCUT, 39 TYPE_BROWSER_SHORTCUT,
40 40
41 // Represents a platform app. 41 // Represents a platform app.
42 TYPE_PLATFORM_APP, 42 TYPE_PLATFORM_APP,
43
44 // Represents a windowed V1 browser app.
45 TYPE_WINDOWED_APP,
43 }; 46 };
44 47
45 // Represents the status of pinned or running app launcher items. 48 // Represents the status of pinned or running app launcher items.
46 enum LauncherItemStatus { 49 enum LauncherItemStatus {
47 // A closed LauncherItem, i.e. has no live instance. 50 // A closed LauncherItem, i.e. has no live instance.
48 STATUS_CLOSED, 51 STATUS_CLOSED,
49 // A LauncherItem that has live instance. 52 // A LauncherItem that has live instance.
50 STATUS_RUNNING, 53 STATUS_RUNNING,
51 // An active LauncherItem that has focus. 54 // An active LauncherItem that has focus.
52 STATUS_ACTIVE, 55 STATUS_ACTIVE,
(...skipping 26 matching lines...) Expand all
79 82
80 // The direction of the focus cycling. 83 // The direction of the focus cycling.
81 enum CycleDirection { 84 enum CycleDirection {
82 CYCLE_FORWARD, 85 CYCLE_FORWARD,
83 CYCLE_BACKWARD 86 CYCLE_BACKWARD
84 }; 87 };
85 88
86 } // namespace ash 89 } // namespace ash
87 90
88 #endif // ASH_LAUNCHER_LAUNCHER_TYPES_H_ 91 #endif // ASH_LAUNCHER_LAUNCHER_TYPES_H_
OLDNEW
« no previous file with comments | « ash/launcher/launcher_navigator.cc ('k') | ash/launcher/launcher_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698