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

Unified Diff: ash/media_controller.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/media_controller.h ('k') | ash/metrics/desktop_task_switch_metric_recorder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/media_controller.cc
diff --git a/ash/media_controller.cc b/ash/media_controller.cc
deleted file mode 100644
index 6f320bff716211b832f8f9776262a9e36824d37a..0000000000000000000000000000000000000000
--- a/ash/media_controller.cc
+++ /dev/null
@@ -1,55 +0,0 @@
-// Copyright 2016 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.
-
-#include "ash/media_controller.h"
-
-namespace ash {
-
-MediaController::MediaController() {}
-
-MediaController::~MediaController() {}
-
-void MediaController::BindRequest(mojom::MediaControllerRequest request) {
- bindings_.AddBinding(this, std::move(request));
-}
-
-void MediaController::AddObserver(MediaCaptureObserver* observer) {
- observers_.AddObserver(observer);
-}
-
-void MediaController::RemoveObserver(MediaCaptureObserver* observer) {
- observers_.RemoveObserver(observer);
-}
-
-void MediaController::HandleMediaNextTrack() {
- if (client_)
- client_->HandleMediaNextTrack();
-}
-
-void MediaController::HandleMediaPlayPause() {
- if (client_)
- client_->HandleMediaPlayPause();
-}
-
-void MediaController::HandleMediaPrevTrack() {
- if (client_)
- client_->HandleMediaPrevTrack();
-}
-
-void MediaController::RequestCaptureState() {
- if (client_)
- client_->RequestCaptureState();
-}
-
-void MediaController::SetClient(mojom::MediaClientAssociatedPtrInfo client) {
- client_.Bind(std::move(client));
-}
-
-void MediaController::NotifyCaptureState(
- const std::vector<mojom::MediaCaptureState>& capture_states) {
- for (auto& observer : observers_)
- observer.OnMediaCaptureChanged(capture_states);
-}
-
-} // namespace ash
« no previous file with comments | « ash/media_controller.h ('k') | ash/metrics/desktop_task_switch_metric_recorder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698