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

Side by Side Diff: ios/chrome/browser/content_settings/host_content_settings_map_factory.cc

Issue 1605453003: Ensure content settings aren't persisted in the guest profile (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
« no previous file with comments | « components/signin/ios/browser/account_consistency_service_unittest.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "ios/chrome/browser/content_settings/host_content_settings_map_factory. h" 5 #include "ios/chrome/browser/content_settings/host_content_settings_map_factory. h"
6 6
7 #include "base/memory/singleton.h" 7 #include "base/memory/singleton.h"
8 #include "base/prefs/pref_service.h" 8 #include "base/prefs/pref_service.h"
9 #include "components/content_settings/core/browser/host_content_settings_map.h" 9 #include "components/content_settings/core/browser/host_content_settings_map.h"
10 #include "components/keyed_service/ios/browser_state_dependency_manager.h" 10 #include "components/keyed_service/ios/browser_state_dependency_manager.h"
(...skipping 25 matching lines...) Expand all
36 HostContentSettingsMapFactory::BuildServiceInstanceFor( 36 HostContentSettingsMapFactory::BuildServiceInstanceFor(
37 web::BrowserState* context) const { 37 web::BrowserState* context) const {
38 ios::ChromeBrowserState* browser_state = 38 ios::ChromeBrowserState* browser_state =
39 ios::ChromeBrowserState::FromBrowserState(context); 39 ios::ChromeBrowserState::FromBrowserState(context);
40 if (browser_state->IsOffTheRecord()) { 40 if (browser_state->IsOffTheRecord()) {
41 // If off-the-record, retrieve the host content settings map of the parent 41 // If off-the-record, retrieve the host content settings map of the parent
42 // browser state to ensure the preferences have been migrated. 42 // browser state to ensure the preferences have been migrated.
43 GetForBrowserState(browser_state->GetOriginalChromeBrowserState()); 43 GetForBrowserState(browser_state->GetOriginalChromeBrowserState());
44 } 44 }
45 return make_scoped_refptr(new HostContentSettingsMap( 45 return make_scoped_refptr(new HostContentSettingsMap(
46 browser_state->GetPrefs(), browser_state->IsOffTheRecord())); 46 browser_state->GetPrefs(), browser_state->IsOffTheRecord(),
47 false /* guest_profile */));
47 } 48 }
48 49
49 web::BrowserState* HostContentSettingsMapFactory::GetBrowserStateToUse( 50 web::BrowserState* HostContentSettingsMapFactory::GetBrowserStateToUse(
50 web::BrowserState* context) const { 51 web::BrowserState* context) const {
51 return GetBrowserStateOwnInstanceInIncognito(context); 52 return GetBrowserStateOwnInstanceInIncognito(context);
52 } 53 }
53 54
54 } // namespace ios 55 } // namespace ios
OLDNEW
« no previous file with comments | « components/signin/ios/browser/account_consistency_service_unittest.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698