Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(273)

Side by Side Diff: ash/test/tray_cast_test_api.cc

Issue 2734733002: Revert "chromeos: Move files in //ash/common to //ash, part 3" (Closed)
Patch Set: Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ash/test/test_wallpaper_delegate.cc ('k') | ash/test/ui_controls_factory_ash.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/wm_shell.h"
7 #include "ash/system/tray/system_tray.h" 8 #include "ash/system/tray/system_tray.h"
8 #include "ash/system/tray/system_tray_delegate.h" 9 #include "ash/system/tray/system_tray_delegate.h"
9 #include "ash/wm_shell.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
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
OLDNEW
« no previous file with comments | « ash/test/test_wallpaper_delegate.cc ('k') | ash/test/ui_controls_factory_ash.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698