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/browser/cast_browser_context.h" | 5 #include "chromecast/browser/cast_browser_context.h" |
6 | 6 |
7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
8 #include "base/files/file_util.h" | 8 #include "base/files/file_util.h" |
9 #include "base/macros.h" | 9 #include "base/macros.h" |
10 #include "base/path_service.h" | 10 #include "base/path_service.h" |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 if (!permission_manager_.get()) | 151 if (!permission_manager_.get()) |
152 permission_manager_.reset(new CastPermissionManager()); | 152 permission_manager_.reset(new CastPermissionManager()); |
153 return permission_manager_.get(); | 153 return permission_manager_.get(); |
154 } | 154 } |
155 | 155 |
156 content::BackgroundSyncController* | 156 content::BackgroundSyncController* |
157 CastBrowserContext::GetBackgroundSyncController() { | 157 CastBrowserContext::GetBackgroundSyncController() { |
158 return nullptr; | 158 return nullptr; |
159 } | 159 } |
160 | 160 |
| 161 content::ChooserPermissionManager* |
| 162 CastBrowserContext::GetChooserPermissionManager() { |
| 163 return nullptr; |
| 164 } |
| 165 |
161 } // namespace shell | 166 } // namespace shell |
162 } // namespace chromecast | 167 } // namespace chromecast |
OLD | NEW |