| 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) |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 | 198 |
| 199 // Returns the insets that should be applied around a DialogClientView. Note | 199 // Returns the insets that should be applied around a DialogClientView. Note |
| 200 // that the top inset is used for the distance between the buttons and the | 200 // that the top inset is used for the distance between the buttons and the |
| 201 // DialogClientView's content view. | 201 // DialogClientView's content view. |
| 202 virtual gfx::Insets GetDialogButtonInsets(); | 202 virtual gfx::Insets GetDialogButtonInsets(); |
| 203 | 203 |
| 204 // Returns the spacing between a pair of related horizontal buttons, used for | 204 // Returns the spacing between a pair of related horizontal buttons, used for |
| 205 // dialog layout. | 205 // dialog layout. |
| 206 virtual int GetDialogRelatedButtonHorizontalSpacing(); | 206 virtual int GetDialogRelatedButtonHorizontalSpacing(); |
| 207 | 207 |
| 208 // Returns the spacing between a pair of related vertical controls, used for |
| 209 // dialog layout. |
| 210 virtual int GetDialogRelatedControlVerticalSpacing(); |
| 211 |
| 208 // Returns the insets that should be applied around a dialog's frame view. | 212 // Returns the insets that should be applied around a dialog's frame view. |
| 209 virtual gfx::Insets GetDialogFrameViewInsets(); | 213 virtual gfx::Insets GetDialogFrameViewInsets(); |
| 210 | 214 |
| 215 // Returns the margins that should be applied around a bubble dialog. |
| 216 virtual gfx::Insets GetBubbleDialogMargins(); |
| 217 |
| 211 protected: | 218 protected: |
| 212 ViewsDelegate(); | 219 ViewsDelegate(); |
| 213 | 220 |
| 214 private: | 221 private: |
| 215 std::unique_ptr<ViewsTouchEditingControllerFactory> views_tsc_factory_; | 222 std::unique_ptr<ViewsTouchEditingControllerFactory> views_tsc_factory_; |
| 216 | 223 |
| 217 #if defined(USE_AURA) | 224 #if defined(USE_AURA) |
| 218 std::unique_ptr<TouchSelectionMenuRunnerViews> touch_selection_menu_runner_; | 225 std::unique_ptr<TouchSelectionMenuRunnerViews> touch_selection_menu_runner_; |
| 219 #endif | 226 #endif |
| 220 | 227 |
| 221 NativeWidgetFactory native_widget_factory_; | 228 NativeWidgetFactory native_widget_factory_; |
| 222 | 229 |
| 223 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate); | 230 DISALLOW_COPY_AND_ASSIGN(ViewsDelegate); |
| 224 }; | 231 }; |
| 225 | 232 |
| 226 } // namespace views | 233 } // namespace views |
| 227 | 234 |
| 228 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ | 235 #endif // UI_VIEWS_VIEWS_DELEGATE_H_ |
| OLD | NEW |