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

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

Issue 1821823002: [Media Router] Conditionally enable mDNS on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Semicolon for Windows code Created 4 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_MOCK_MEDIA_ROUTER_H_ 5 #ifndef CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_
6 #define CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_ 6 #define CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 scoped_ptr<std::vector<uint8_t>> data, 60 scoped_ptr<std::vector<uint8_t>> data,
61 const SendRouteMessageCallback& callback) override { 61 const SendRouteMessageCallback& callback) override {
62 SendRouteBinaryMessageInternal(route_id, data.get(), callback); 62 SendRouteBinaryMessageInternal(route_id, data.get(), callback);
63 } 63 }
64 MOCK_METHOD3(SendRouteBinaryMessageInternal, 64 MOCK_METHOD3(SendRouteBinaryMessageInternal,
65 void(const MediaRoute::Id& route_id, 65 void(const MediaRoute::Id& route_id,
66 std::vector<uint8_t>* data, 66 std::vector<uint8_t>* data,
67 const SendRouteMessageCallback& callback)); 67 const SendRouteMessageCallback& callback));
68 MOCK_METHOD1(AddIssue, void(const Issue& issue)); 68 MOCK_METHOD1(AddIssue, void(const Issue& issue));
69 MOCK_METHOD1(ClearIssue, void(const Issue::Id& issue_id)); 69 MOCK_METHOD1(ClearIssue, void(const Issue::Id& issue_id));
70 MOCK_METHOD0(OnUserGesture, void());
70 MOCK_METHOD1(OnPresentationSessionDetached, 71 MOCK_METHOD1(OnPresentationSessionDetached,
71 void(const MediaRoute::Id& route_id)); 72 void(const MediaRoute::Id& route_id));
72 scoped_ptr<PresentationConnectionStateSubscription> 73 scoped_ptr<PresentationConnectionStateSubscription>
73 AddPresentationConnectionStateChangedCallback( 74 AddPresentationConnectionStateChangedCallback(
74 const MediaRoute::Id& route_id, 75 const MediaRoute::Id& route_id,
75 const content::PresentationConnectionStateChangedCallback& callback) 76 const content::PresentationConnectionStateChangedCallback& callback)
76 override { 77 override {
77 OnAddPresentationConnectionStateChangedCallbackInvoked(callback); 78 OnAddPresentationConnectionStateChangedCallbackInvoked(callback);
78 return connection_state_callbacks_.Add(callback); 79 return connection_state_callbacks_.Add(callback);
79 } 80 }
(...skipping 18 matching lines...) Expand all
98 99
99 private: 100 private:
100 base::CallbackList<void( 101 base::CallbackList<void(
101 const content::PresentationConnectionStateChangeInfo&)> 102 const content::PresentationConnectionStateChangeInfo&)>
102 connection_state_callbacks_; 103 connection_state_callbacks_;
103 }; 104 };
104 105
105 } // namespace media_router 106 } // namespace media_router
106 107
107 #endif // CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_ 108 #endif // CHROME_BROWSER_MEDIA_ROUTER_MOCK_MEDIA_ROUTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/media/router/media_router_mojo_test.cc ('k') | chrome/browser/media/router/test_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698