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 UI_VIEWS_VIEWS_DELEGATE_H_ | 5 #ifndef UI_VIEWS_VIEWS_DELEGATE_H_ |
6 #define UI_VIEWS_VIEWS_DELEGATE_H_ | 6 #define UI_VIEWS_VIEWS_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
11 #include <windows.h> | 11 #include <windows.h> |
12 #endif | 12 #endif |
13 | 13 |
14 #include "base/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "ui/base/accessibility/accessibility_types.h" | 15 #include "ui/base/accessibility/accessibility_types.h" |
16 #include "ui/base/ui_base_types.h" | 16 #include "ui/base/ui_base_types.h" |
17 #include "ui/gfx/native_widget_types.h" | 17 #include "ui/gfx/native_widget_types.h" |
18 #include "ui/views/views_export.h" | 18 #include "ui/views/views_export.h" |
19 #include "ui/views/widget/widget.h" | 19 #include "ui/views/widget/widget.h" |
20 | 20 |
21 namespace base { | 21 namespace base { |
22 class TimeDelta; | 22 class TimeDelta; |
23 } | 23 } |
24 | 24 |
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 // Returns the default obscured text reveal duration. | 117 // Returns the default obscured text reveal duration. |
118 virtual base::TimeDelta GetDefaultTextfieldObscuredRevealDuration() = 0; | 118 virtual base::TimeDelta GetDefaultTextfieldObscuredRevealDuration() = 0; |
119 | 119 |
120 private: | 120 private: |
121 scoped_ptr<ViewsTouchSelectionControllerFactory> views_tsc_factory_; | 121 scoped_ptr<ViewsTouchSelectionControllerFactory> views_tsc_factory_; |
122 }; | 122 }; |
123 | 123 |
124 } // namespace views | 124 } // namespace views |
125 | 125 |
126 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ | 126 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ |
OLD | NEW |