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

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

Issue 1228863005: [MediaRouter] The minimal change to make everything build on Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Typo in a chrome/test/BUILD.gn Created 5 years, 5 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_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 <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
81 void RegisterMediaRoutesObserver(MediaRoutesObserver* observer) override; 81 void RegisterMediaRoutesObserver(MediaRoutesObserver* observer) override;
82 void UnregisterMediaRoutesObserver(MediaRoutesObserver* observer) override; 82 void UnregisterMediaRoutesObserver(MediaRoutesObserver* observer) override;
83 void RegisterIssuesObserver(IssuesObserver* observer) override; 83 void RegisterIssuesObserver(IssuesObserver* observer) override;
84 void UnregisterIssuesObserver(IssuesObserver* observer) override; 84 void UnregisterIssuesObserver(IssuesObserver* observer) override;
85 85
86 void set_instance_id_for_test(const std::string& instance_id) { 86 void set_instance_id_for_test(const std::string& instance_id) {
87 instance_id_ = instance_id; 87 instance_id_ = instance_id;
88 } 88 }
89 89
90 private: 90 private:
91 friend class MediaRouterMojoImplFactory; 91 friend class MediaRouterFactory;
92 friend class MediaRouterMojoTest; 92 friend class MediaRouterMojoTest;
93 93
94 FRIEND_TEST_ALL_PREFIXES(MediaRouterMojoExtensionTest, 94 FRIEND_TEST_ALL_PREFIXES(MediaRouterMojoExtensionTest,
95 DeferredBindingAndSuspension); 95 DeferredBindingAndSuspension);
96 96
97 // Standard constructor, used by 97 // Standard constructor, used by
98 // MediaRouterMojoImplFactory::GetApiForBrowserContext. 98 // MediaRouterMojoImplFactory::GetApiForBrowserContext.
99 explicit MediaRouterMojoImpl( 99 explicit MediaRouterMojoImpl(
100 extensions::EventPageTracker* event_page_tracker); 100 extensions::EventPageTracker* event_page_tracker);
101 101
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
197 std::string instance_id_; 197 std::string instance_id_;
198 198
199 base::ThreadChecker thread_checker_; 199 base::ThreadChecker thread_checker_;
200 200
201 DISALLOW_COPY_AND_ASSIGN(MediaRouterMojoImpl); 201 DISALLOW_COPY_AND_ASSIGN(MediaRouterMojoImpl);
202 }; 202 };
203 203
204 } // namespace media_router 204 } // namespace media_router
205 205
206 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_MOJO_IMPL_H_ 206 #endif // CHROME_BROWSER_MEDIA_ROUTER_MEDIA_ROUTER_MOJO_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698