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

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

Issue 2771413003: Move c/b/media/router/mojo/*.mojom to chrome/common/media_router/mojo/*.mojom (Closed)
Patch Set: Rebase Created 3 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
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 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/callback_list.h" 14 #include "base/callback_list.h"
15 #include "base/time/time.h" 15 #include "base/time/time.h"
16 #include "chrome/browser/media/router/discovery/media_sink_internal.h"
17 #include "chrome/browser/media/router/issue.h"
18 #include "chrome/browser/media/router/media_route.h"
19 #include "chrome/browser/media/router/media_sink.h"
20 #include "chrome/browser/media/router/media_source.h"
21 #include "chrome/browser/media/router/route_message_observer.h" 16 #include "chrome/browser/media/router/route_message_observer.h"
17 #include "chrome/common/media_router/discovery/media_sink_internal.h"
18 #include "chrome/common/media_router/issue.h"
19 #include "chrome/common/media_router/media_route.h"
20 #include "chrome/common/media_router/media_sink.h"
21 #include "chrome/common/media_router/media_source.h"
22 #include "components/keyed_service/core/keyed_service.h" 22 #include "components/keyed_service/core/keyed_service.h"
23 #include "content/public/browser/presentation_service_delegate.h" 23 #include "content/public/browser/presentation_service_delegate.h"
24 24
25 namespace content { 25 namespace content {
26 class WebContents; 26 class WebContents;
27 } 27 }
28 28
29 namespace url { 29 namespace url {
30 class Origin; 30 class Origin;
31 } // namespace url 31 } // namespace url
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 // Removes the MediaRouteController for |route_id| from the list of 265 // Removes the MediaRouteController for |route_id| from the list of
266 // controllers held by |this|. Called by MediaRouteController when it is 266 // controllers held by |this|. Called by MediaRouteController when it is
267 // invalidated. 267 // invalidated.
268 virtual void DetachRouteController(const MediaRoute::Id& route_id, 268 virtual void DetachRouteController(const MediaRoute::Id& route_id,
269 MediaRouteController* controller) = 0; 269 MediaRouteController* controller) = 0;
270 }; 270 };
271 271
272 } // namespace media_router 272 } // namespace media_router
273 273
274 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_ 274 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698