| 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 #include "ui/views/test/test_views_delegate.h" | 5 #include "ui/views/test/test_views_delegate.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "ui/base/clipboard/clipboard.h" | 8 #include "ui/base/clipboard/clipboard.h" |
| 9 | 9 |
| 10 namespace views { | 10 namespace views { |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 } | 50 } |
| 51 | 51 |
| 52 bool TestViewsDelegate::UseTransparentWindows() const { | 52 bool TestViewsDelegate::UseTransparentWindows() const { |
| 53 return use_transparent_windows_; | 53 return use_transparent_windows_; |
| 54 } | 54 } |
| 55 | 55 |
| 56 int TestViewsDelegate::GetDispositionForEvent(int event_flags) { | 56 int TestViewsDelegate::GetDispositionForEvent(int event_flags) { |
| 57 return 0; | 57 return 0; |
| 58 } | 58 } |
| 59 | 59 |
| 60 #if defined(USE_AURA) |
| 61 views::NativeWidgetHelperAura* TestViewsDelegate::CreateNativeWidgetHelper( |
| 62 views::NativeWidgetAura* native_widget) { |
| 63 return NULL; |
| 64 } |
| 65 #endif |
| 66 |
| 60 } // namespace views | 67 } // namespace views |
| OLD | NEW |