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

Side by Side Diff: chromecast/browser/cast_content_browser_client.h

Issue 2144533002: Convert network hints to Mojo (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_
6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include <map> 8 #include <map>
9 #include <memory> 9 #include <memory>
10 #include <string> 10 #include <string>
(...skipping 10 matching lines...) Expand all
21 } 21 }
22 22
23 namespace media { 23 namespace media {
24 class BrowserCdmFactory; 24 class BrowserCdmFactory;
25 } 25 }
26 26
27 namespace metrics { 27 namespace metrics {
28 class MetricsService; 28 class MetricsService;
29 } 29 }
30 30
31 namespace network_hints {
32 class NetworkHintsMessageFilter;
33 }
34
31 namespace chromecast { 35 namespace chromecast {
32 class CastService; 36 class CastService;
33 37
34 namespace media { 38 namespace media {
35 class MediaPipelineBackend; 39 class MediaPipelineBackend;
36 class MediaPipelineBackendManager; 40 class MediaPipelineBackendManager;
37 struct MediaPipelineDeviceParams; 41 struct MediaPipelineDeviceParams;
38 class MediaResourceTracker; 42 class MediaResourceTracker;
39 class VideoPlaneController; 43 class VideoPlaneController;
40 } 44 }
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 const std::string& process_type); 189 const std::string& process_type);
186 190
187 // A static cache to hold crash_handlers for each process_type 191 // A static cache to hold crash_handlers for each process_type
188 std::map<std::string, breakpad::CrashHandlerHostLinux*> crash_handlers_; 192 std::map<std::string, breakpad::CrashHandlerHostLinux*> crash_handlers_;
189 #endif // !defined(OS_ANDROID) 193 #endif // !defined(OS_ANDROID)
190 194
191 // Created by CastContentBrowserClient but owned by BrowserMainLoop. 195 // Created by CastContentBrowserClient but owned by BrowserMainLoop.
192 CastBrowserMainParts* cast_browser_main_parts_; 196 CastBrowserMainParts* cast_browser_main_parts_;
193 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_; 197 std::unique_ptr<URLRequestContextFactory> url_request_context_factory_;
194 198
199 std::unique_ptr<network_hints::NetworkHintsMessageFilter> network_hints_;
200
195 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient); 201 DISALLOW_COPY_AND_ASSIGN(CastContentBrowserClient);
196 }; 202 };
197 203
198 } // namespace shell 204 } // namespace shell
199 } // namespace chromecast 205 } // namespace chromecast
200 206
201 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_ 207 #endif // CHROMECAST_BROWSER_CAST_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698