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 #ifndef ASH_SHELL_DELEGATE_H_ | 5 #ifndef ASH_SHELL_DELEGATE_H_ |
6 #define ASH_SHELL_DELEGATE_H_ | 6 #define ASH_SHELL_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/ash_export.h" | 10 #include "ash/ash_export.h" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
82 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_EXIT_FULLSCREEN, | 82 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_EXIT_FULLSCREEN, |
83 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_MAXIMIZE, | 83 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_MAXIMIZE, |
84 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_MINIMIZE, | 84 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_MINIMIZE, |
85 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_RESTORE, | 85 UMA_WINDOW_MAXIMIZE_BUTTON_CLICK_RESTORE, |
86 UMA_WINDOW_MAXIMIZE_BUTTON_MAXIMIZE, | 86 UMA_WINDOW_MAXIMIZE_BUTTON_MAXIMIZE, |
87 UMA_WINDOW_MAXIMIZE_BUTTON_MAXIMIZE_LEFT, | 87 UMA_WINDOW_MAXIMIZE_BUTTON_MAXIMIZE_LEFT, |
88 UMA_WINDOW_MAXIMIZE_BUTTON_MAXIMIZE_RIGHT, | 88 UMA_WINDOW_MAXIMIZE_BUTTON_MAXIMIZE_RIGHT, |
89 UMA_WINDOW_MAXIMIZE_BUTTON_MINIMIZE, | 89 UMA_WINDOW_MAXIMIZE_BUTTON_MINIMIZE, |
90 UMA_WINDOW_MAXIMIZE_BUTTON_RESTORE, | 90 UMA_WINDOW_MAXIMIZE_BUTTON_RESTORE, |
91 UMA_WINDOW_MAXIMIZE_BUTTON_SHOW_BUBBLE, | 91 UMA_WINDOW_MAXIMIZE_BUTTON_SHOW_BUBBLE, |
92 UMA_WINDOW_OVERVIEW, | |
sky
2013/09/19 20:43:16
Add description of these, they aren't particularly
flackr
2013/09/19 22:18:52
Done.
| |
93 UMA_WINDOW_SELECTION, | |
92 }; | 94 }; |
93 | 95 |
94 enum AccessibilityNotificationVisibility { | 96 enum AccessibilityNotificationVisibility { |
95 A11Y_NOTIFICATION_NONE, | 97 A11Y_NOTIFICATION_NONE, |
96 A11Y_NOTIFICATION_SHOW, | 98 A11Y_NOTIFICATION_SHOW, |
97 }; | 99 }; |
98 | 100 |
99 // Delegate of the Shell. | 101 // Delegate of the Shell. |
100 class ASH_EXPORT ShellDelegate { | 102 class ASH_EXPORT ShellDelegate { |
101 public: | 103 public: |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
248 // value. | 250 // value. |
249 virtual RootWindowHostFactory* CreateRootWindowHostFactory() = 0; | 251 virtual RootWindowHostFactory* CreateRootWindowHostFactory() = 0; |
250 | 252 |
251 // Get the product name. | 253 // Get the product name. |
252 virtual base::string16 GetProductName() const = 0; | 254 virtual base::string16 GetProductName() const = 0; |
253 }; | 255 }; |
254 | 256 |
255 } // namespace ash | 257 } // namespace ash |
256 | 258 |
257 #endif // ASH_SHELL_DELEGATE_H_ | 259 #endif // ASH_SHELL_DELEGATE_H_ |
OLD | NEW |