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

Side by Side Diff: blimp/engine/browser/blimp_browser_context.cc

Issue 1560263002: Store Bluetooth permissions in website settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added code to check session->chooser_permission_manager Created 4 years, 11 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 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
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
OLDNEW
« no previous file with comments | « blimp/engine/browser/blimp_browser_context.h ('k') | chrome/browser/bluetooth/bluetooth_permission_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698