| OLD | NEW |
| 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 #include "blimp/engine/browser/blimp_browser_context.h" | 5 #include "blimp/engine/browser/blimp_browser_context.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/environment.h" | 8 #include "base/environment.h" |
| 9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/nix/xdg_util.h" | 10 #include "base/nix/xdg_util.h" |
| (...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 if (!permission_manager_) | 165 if (!permission_manager_) |
| 166 permission_manager_.reset(new BlimpPermissionManager()); | 166 permission_manager_.reset(new BlimpPermissionManager()); |
| 167 return permission_manager_.get(); | 167 return permission_manager_.get(); |
| 168 } | 168 } |
| 169 | 169 |
| 170 content::BackgroundSyncController* | 170 content::BackgroundSyncController* |
| 171 BlimpBrowserContext::GetBackgroundSyncController() { | 171 BlimpBrowserContext::GetBackgroundSyncController() { |
| 172 return nullptr; | 172 return nullptr; |
| 173 } | 173 } |
| 174 | 174 |
| 175 content::ChooserPermissionManager* |
| 176 BlimpBrowserContext::GetChooserPermissionManager() { |
| 177 return nullptr; |
| 178 } |
| 179 |
| 175 } // namespace engine | 180 } // namespace engine |
| 176 } // namespace blimp | 181 } // namespace blimp |
| OLD | NEW |