| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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/scoped_views_test_helper.h" | 5 #include "ui/views/test/scoped_views_test_helper.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/memory/ptr_util.h" | 9 #include "base/memory/ptr_util.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 // ui::TerminateContextFactoryForTests(). | 47 // ui::TerminateContextFactoryForTests(). |
| 48 platform_test_helper_.reset(); | 48 platform_test_helper_.reset(); |
| 49 | 49 |
| 50 ui::TerminateContextFactoryForTests(); | 50 ui::TerminateContextFactoryForTests(); |
| 51 } | 51 } |
| 52 | 52 |
| 53 gfx::NativeWindow ScopedViewsTestHelper::GetContext() { | 53 gfx::NativeWindow ScopedViewsTestHelper::GetContext() { |
| 54 return test_helper_->GetContext(); | 54 return test_helper_->GetContext(); |
| 55 } | 55 } |
| 56 | 56 |
| 57 bool ScopedViewsTestHelper::IsMus() const { | |
| 58 return platform_test_helper_->IsMus(); | |
| 59 } | |
| 60 | |
| 61 } // namespace views | 57 } // namespace views |
| OLD | NEW |