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 "ash/test/tray_cast_test_api.h" | 5 #include "ash/test/tray_cast_test_api.h" |
6 | 6 |
7 #include "ash/common/system/tray/system_tray.h" | |
8 #include "ash/common/system/tray/system_tray_delegate.h" | |
9 #include "ash/common/wm_shell.h" | 7 #include "ash/common/wm_shell.h" |
| 8 #include "ash/system/tray/system_tray.h" |
| 9 #include "ash/system/tray/system_tray_delegate.h" |
10 #include "ui/views/view.h" | 10 #include "ui/views/view.h" |
11 | 11 |
12 namespace ash { | 12 namespace ash { |
13 | 13 |
14 TrayCastTestAPI::TrayCastTestAPI(TrayCast* tray_cast) : tray_cast_(tray_cast) {} | 14 TrayCastTestAPI::TrayCastTestAPI(TrayCast* tray_cast) : tray_cast_(tray_cast) {} |
15 | 15 |
16 TrayCastTestAPI::~TrayCastTestAPI() {} | 16 TrayCastTestAPI::~TrayCastTestAPI() {} |
17 | 17 |
18 bool TrayCastTestAPI::IsTrayInitialized() const { | 18 bool TrayCastTestAPI::IsTrayInitialized() const { |
19 return tray_cast_->default_ != nullptr; | 19 return tray_cast_->default_ != nullptr; |
(...skipping 26 matching lines...) Expand all Loading... |
46 void TrayCastTestAPI::OnCastingSessionStartedOrStopped(bool is_casting) { | 46 void TrayCastTestAPI::OnCastingSessionStartedOrStopped(bool is_casting) { |
47 tray_cast_->OnCastingSessionStartedOrStopped(is_casting); | 47 tray_cast_->OnCastingSessionStartedOrStopped(is_casting); |
48 } | 48 } |
49 | 49 |
50 bool TrayCastTestAPI::IsViewDrawn(TrayCast::ChildViewId id) const { | 50 bool TrayCastTestAPI::IsViewDrawn(TrayCast::ChildViewId id) const { |
51 const views::View* view = tray_cast_->GetDefaultView()->GetViewByID(id); | 51 const views::View* view = tray_cast_->GetDefaultView()->GetViewByID(id); |
52 return view != nullptr && view->IsDrawn(); | 52 return view != nullptr && view->IsDrawn(); |
53 } | 53 } |
54 | 54 |
55 } // namespace ash | 55 } // namespace ash |
OLD | NEW |