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

Unified Diff: ash/common/system/chromeos/cast/tray_cast.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ash/common/system/chromeos/cast/tray_cast.h
diff --git a/ash/common/system/chromeos/cast/tray_cast.h b/ash/common/system/chromeos/cast/tray_cast.h
deleted file mode 100644
index ae7fda7d9d5d3cbeb121471c6f94ad66c88e8638..0000000000000000000000000000000000000000
--- a/ash/common/system/chromeos/cast/tray_cast.h
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_COMMON_SYSTEM_CHROMEOS_CAST_TRAY_CAST_H_
-#define ASH_COMMON_SYSTEM_CHROMEOS_CAST_TRAY_CAST_H_
-
-#include <string>
-#include <vector>
-
-#include "ash/common/cast_config_controller.h"
-#include "ash/common/shell_observer.h"
-#include "ash/common/system/tray/system_tray_item.h"
-#include "base/macros.h"
-
-namespace ash {
-namespace tray {
-class CastTrayView;
-class CastDetailedView;
-class CastDuplexView;
-} // namespace tray
-
-class ASH_EXPORT TrayCast : public SystemTrayItem,
- public ShellObserver,
- public CastConfigControllerObserver {
- public:
- explicit TrayCast(SystemTray* system_tray);
- ~TrayCast() override;
-
- private:
- // Helper/utility methods for testing.
- friend class TrayCastTestAPI;
- void StartCastForTest(const std::string& sink_id);
- void StopCastForTest();
- // Returns the id of the item we are currently displaying in the cast view.
- // This assumes that the cast view is active.
- const std::string& GetDisplayedCastId();
- const views::View* GetDefaultView() const;
- enum ChildViewId { TRAY_VIEW = 1, SELECT_VIEW, CAST_VIEW };
-
- // Overridden from SystemTrayItem.
- views::View* CreateTrayView(LoginStatus status) override;
- views::View* CreateDefaultView(LoginStatus status) override;
- views::View* CreateDetailedView(LoginStatus status) override;
- void DestroyTrayView() override;
- void DestroyDefaultView() override;
- void DestroyDetailedView() override;
-
- // Overridden from ShellObserver.
- void OnCastingSessionStartedOrStopped(bool started) override;
-
- // Overridden from CastConfigObserver.
- void OnDevicesUpdated(std::vector<mojom::SinkAndRoutePtr> devices) override;
-
- // This makes sure that the current view displayed in the tray is the correct
- // one, depending on if we are currently casting. If we're casting, then a
- // view with a stop button is displayed; otherwise, a view that links to a
- // detail view is displayed instead that allows the user to easily begin a
- // casting session.
- void UpdatePrimaryView();
-
- // Returns true if there is an active cast route. The route may be DIAL based,
- // such as casting YouTube where the cast sink directly streams content from
- // another server. In that case, is_mirror_casting_ will be false since this
- // device is not actively transmitting information to the cast sink.
- bool HasActiveRoute();
-
- std::vector<mojom::SinkAndRoutePtr> sinks_and_routes_;
-
- // True if there is a mirror-based cast session and the active-cast tray icon
- // should be shown.
- bool is_mirror_casting_ = false;
-
- // Not owned.
- tray::CastTrayView* tray_ = nullptr;
- tray::CastDuplexView* default_ = nullptr;
- tray::CastDetailedView* detailed_ = nullptr;
-
- DISALLOW_COPY_AND_ASSIGN(TrayCast);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_CHROMEOS_CAST_TRAY_CAST_H_
« no previous file with comments | « ash/common/system/chromeos/brightness/tray_brightness_unittest.cc ('k') | ash/common/system/chromeos/cast/tray_cast.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698