| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 quota::SpecialStoragePolicy* CastBrowserContext::GetSpecialStoragePolicy() { | 120 quota::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() { |
| 131 NOTIMPLEMENTED(); |
| 132 return NULL; |
| 133 } |
| 134 |
| 130 } // namespace shell | 135 } // namespace shell |
| 131 } // namespace chromecast | 136 } // namespace chromecast |
| OLD | NEW |