OLD | NEW |
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_MOJO_IMPL_H_ | 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_MOJO_IMPL_H_ |
6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_MOJO_IMPL_H_ | 6 #define CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_MOJO_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/containers/hash_tables.h" | 13 #include "base/containers/hash_tables.h" |
14 #include "base/containers/scoped_ptr_hash_map.h" | 14 #include "base/containers/scoped_ptr_hash_map.h" |
15 #include "base/macros.h" | 15 #include "base/macros.h" |
16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
18 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
19 #include "base/observer_list.h" | 19 #include "base/observer_list.h" |
20 #include "base/thread_task_runner_handle.h" | 20 #include "base/thread_task_runner_handle.h" |
21 #include "base/threading/thread_checker.h" | 21 #include "base/threading/thread_checker.h" |
22 #include "chrome/browser/media/router/issue.h" | 22 #include "chrome/browser/media/router/issue.h" |
23 #include "chrome/browser/media/router/issue_manager.h" | 23 #include "chrome/browser/media/router/issue_manager.h" |
24 #include "chrome/browser/media/router/media_router.h" | 24 #include "chrome/browser/media/router/media_router.h" |
25 #include "chrome/browser/media/router/media_router.mojom.h" | 25 #include "chrome/browser/media/router/media_router.mojom.h" |
| 26 #include "third_party/mojo/src/mojo/public/cpp/bindings/binding.h" |
26 | 27 |
27 namespace content { | 28 namespace content { |
28 class BrowserContext; | 29 class BrowserContext; |
29 } | 30 } |
30 | 31 |
31 namespace extensions { | 32 namespace extensions { |
32 class EventPageTracker; | 33 class EventPageTracker; |
33 } | 34 } |
34 | 35 |
35 namespace media_router { | 36 namespace media_router { |
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
232 std::string instance_id_; | 233 std::string instance_id_; |
233 | 234 |
234 base::ThreadChecker thread_checker_; | 235 base::ThreadChecker thread_checker_; |
235 | 236 |
236 DISALLOW_COPY_AND_ASSIGN(MediaRouterMojoImpl); | 237 DISALLOW_COPY_AND_ASSIGN(MediaRouterMojoImpl); |
237 }; | 238 }; |
238 | 239 |
239 } // namespace media_router | 240 } // namespace media_router |
240 | 241 |
241 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_MOJO_IMPL_H_ | 242 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_MOJO_IMPL_H_ |
OLD | NEW |