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

Side by Side Diff: chrome/browser/media/router/test_helper.cc

Issue 1430413003: [Media Router] Connection state change listening redesign part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 5 years, 1 month 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
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 "chrome/browser/media/router/test_helper.h" 5 #include "chrome/browser/media/router/test_helper.h"
6 6
7 namespace media_router { 7 namespace media_router {
8 8
9 MockIssuesObserver::MockIssuesObserver(MediaRouter* router) 9 MockIssuesObserver::MockIssuesObserver(MediaRouter* router)
10 : IssuesObserver(router) {} 10 : IssuesObserver(router) {}
(...skipping 10 matching lines...) Expand all
21 : MediaRoutesObserver(router) { 21 : MediaRoutesObserver(router) {
22 } 22 }
23 MockMediaRoutesObserver::~MockMediaRoutesObserver() { 23 MockMediaRoutesObserver::~MockMediaRoutesObserver() {
24 } 24 }
25 25
26 MockEventPageTracker::MockEventPageTracker() { 26 MockEventPageTracker::MockEventPageTracker() {
27 } 27 }
28 MockEventPageTracker::~MockEventPageTracker() { 28 MockEventPageTracker::~MockEventPageTracker() {
29 } 29 }
30 30
31 MockPresentationConnectionStateObserver::
32 MockPresentationConnectionStateObserver(MediaRouter* router,
33 const MediaRoute::Id& route_id)
34 : PresentationConnectionStateObserver(router, route_id) {}
35
36 MockPresentationConnectionStateObserver::
37 ~MockPresentationConnectionStateObserver() = default;
38
39 } // namespace media_router 31 } // namespace media_router
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698