| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 VIEWS_VIEW_H_ | 5 #ifndef VIEWS_VIEW_H_ |
| 6 #define VIEWS_VIEW_H_ | 6 #define VIEWS_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 class ThemeProvider; | 33 class ThemeProvider; |
| 34 class ViewAccessibility; | 34 class ViewAccessibility; |
| 35 | 35 |
| 36 namespace views { | 36 namespace views { |
| 37 | 37 |
| 38 class Background; | 38 class Background; |
| 39 class Border; | 39 class Border; |
| 40 class FocusManager; | 40 class FocusManager; |
| 41 class FocusTraversable; | 41 class FocusTraversable; |
| 42 class LayoutManager; | 42 class LayoutManager; |
| 43 class RestoreFocusTask; | |
| 44 class RootView; | 43 class RootView; |
| 45 class ScrollView; | 44 class ScrollView; |
| 46 class Widget; | 45 class Widget; |
| 47 class Window; | 46 class Window; |
| 48 | 47 |
| 49 // ContextMenuController is responsible for showing the context menu for a | 48 // ContextMenuController is responsible for showing the context menu for a |
| 50 // View. To use a ContextMenuController invoke SetContextMenuController on a | 49 // View. To use a ContextMenuController invoke SetContextMenuController on a |
| 51 // View. When the appropriate user gesture occurs ShowContextMenu is invoked | 50 // View. When the appropriate user gesture occurs ShowContextMenu is invoked |
| 52 // on the ContextMenuController. | 51 // on the ContextMenuController. |
| 53 // | 52 // |
| (...skipping 1274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1328 // The default value for how long to wait (in ms) before showing a menu | 1327 // The default value for how long to wait (in ms) before showing a menu |
| 1329 // button on hover. This value is used if the OS doesn't supply one. | 1328 // button on hover. This value is used if the OS doesn't supply one. |
| 1330 static const int kShowFolderDropMenuDelay; | 1329 static const int kShowFolderDropMenuDelay; |
| 1331 | 1330 |
| 1332 DISALLOW_COPY_AND_ASSIGN(View); | 1331 DISALLOW_COPY_AND_ASSIGN(View); |
| 1333 }; | 1332 }; |
| 1334 | 1333 |
| 1335 } // namespace views | 1334 } // namespace views |
| 1336 | 1335 |
| 1337 #endif // VIEWS_VIEW_H_ | 1336 #endif // VIEWS_VIEW_H_ |
| OLD | NEW |