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

Side by Side Diff: chrome/browser/media/router/media_routes_observer.h

Issue 1020743003: [Media Router] Design MediaRouter interface with stub implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix compile Created 5 years, 8 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTES_OBSERVER_H_
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTES_OBSERVER_H_
7
8 #include <vector>
9
10 #include "chrome/browser/media/router/media_route.h"
11 #include "chrome/browser/media/router/media_sink.h"
12
13 namespace media_router {
14
15 // Base class for observing when the set of MediaRoutes and their associated
16 // MediaSinks have been updated.
17 class MediaRoutesObserver {
18 public:
19 MediaRoutesObserver();
20 virtual ~MediaRoutesObserver();
21
22 // This function is invoked when the list of routes and their associated
23 // sinks have been updated.
24 virtual void OnRoutesUpdated(const std::vector<MediaRoute>& routes) {}
25
26 private:
27 friend class MediaRouterImpl;
28
29 // Whether the observer is registered to the Media Router.
30 // This field will be set by MediaRouterImpl, and must be false by
31 // this instance's destruction. This is used to detect if the observer
32 // is being destroyed while still registered to the Media Router.
33 bool registered_;
34 };
35
36 } // namespace media_router
37
38 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTES_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698