OLD | NEW |
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 #include "chromecast/shell/browser/cast_browser_context.h" | 5 #include "chromecast/shell/browser/cast_browser_context.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/path_service.h" | 9 #include "base/path_service.h" |
10 #include "chromecast/common/cast_paths.h" | 10 #include "chromecast/common/cast_paths.h" |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
110 CastBrowserContext::GetDownloadManagerDelegate() { | 110 CastBrowserContext::GetDownloadManagerDelegate() { |
111 NOTIMPLEMENTED(); | 111 NOTIMPLEMENTED(); |
112 return NULL; | 112 return NULL; |
113 } | 113 } |
114 | 114 |
115 content::BrowserPluginGuestManager* CastBrowserContext::GetGuestManager() { | 115 content::BrowserPluginGuestManager* CastBrowserContext::GetGuestManager() { |
116 NOTIMPLEMENTED(); | 116 NOTIMPLEMENTED(); |
117 return NULL; | 117 return NULL; |
118 } | 118 } |
119 | 119 |
120 quota::SpecialStoragePolicy* CastBrowserContext::GetSpecialStoragePolicy() { | 120 storage::SpecialStoragePolicy* CastBrowserContext::GetSpecialStoragePolicy() { |
121 NOTIMPLEMENTED(); | 121 NOTIMPLEMENTED(); |
122 return NULL; | 122 return NULL; |
123 } | 123 } |
124 | 124 |
125 content::PushMessagingService* CastBrowserContext::GetPushMessagingService() { | 125 content::PushMessagingService* CastBrowserContext::GetPushMessagingService() { |
126 NOTIMPLEMENTED(); | 126 NOTIMPLEMENTED(); |
127 return NULL; | 127 return NULL; |
128 } | 128 } |
129 | 129 |
130 content::SSLHostStateDelegate* CastBrowserContext::GetSSLHostStateDelegate() { | 130 content::SSLHostStateDelegate* CastBrowserContext::GetSSLHostStateDelegate() { |
131 NOTIMPLEMENTED(); | 131 NOTIMPLEMENTED(); |
132 return NULL; | 132 return NULL; |
133 } | 133 } |
134 | 134 |
135 } // namespace shell | 135 } // namespace shell |
136 } // namespace chromecast | 136 } // namespace chromecast |
OLD | NEW |