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

Side by Side Diff: chrome/browser/profiles/profile_io_data.cc

Issue 2874833002: Don't compile code for desktop zoom or GuestViews on mobile platforms. (Closed)
Patch Set: Rebase. Created 3 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "chrome/browser/profiles/profile_io_data.h" 5 #include "chrome/browser/profiles/profile_io_data.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 8
9 #include <string> 9 #include <string>
10 #include <utility> 10 #include <utility>
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 #include "components/net_log/chrome_net_log.h" 69 #include "components/net_log/chrome_net_log.h"
70 #include "components/policy/core/browser/url_blacklist_manager.h" 70 #include "components/policy/core/browser/url_blacklist_manager.h"
71 #include "components/policy/core/common/cloud/policy_header_io_helper.h" 71 #include "components/policy/core/common/cloud/policy_header_io_helper.h"
72 #include "components/policy/core/common/cloud/policy_header_service.h" 72 #include "components/policy/core/common/cloud/policy_header_service.h"
73 #include "components/policy/core/common/cloud/user_cloud_policy_manager.h" 73 #include "components/policy/core/common/cloud/user_cloud_policy_manager.h"
74 #include "components/prefs/pref_service.h" 74 #include "components/prefs/pref_service.h"
75 #include "components/previews/core/previews_io_data.h" 75 #include "components/previews/core/previews_io_data.h"
76 #include "components/signin/core/common/signin_pref_names.h" 76 #include "components/signin/core/common/signin_pref_names.h"
77 #include "components/url_formatter/url_fixer.h" 77 #include "components/url_formatter/url_fixer.h"
78 #include "content/public/browser/browser_thread.h" 78 #include "content/public/browser/browser_thread.h"
79 #include "content/public/browser/host_zoom_map.h"
80 #include "content/public/browser/notification_service.h" 79 #include "content/public/browser/notification_service.h"
81 #include "content/public/browser/resource_context.h" 80 #include "content/public/browser/resource_context.h"
82 #include "content/public/common/content_switches.h" 81 #include "content/public/common/content_switches.h"
83 #include "extensions/features/features.h" 82 #include "extensions/features/features.h"
84 #include "net/cert/cert_verifier.h" 83 #include "net/cert/cert_verifier.h"
85 #include "net/cert/ct_log_verifier.h" 84 #include "net/cert/ct_log_verifier.h"
86 #include "net/cert/multi_log_ct_verifier.h" 85 #include "net/cert/multi_log_ct_verifier.h"
87 #include "net/cookies/canonical_cookie.h" 86 #include "net/cookies/canonical_cookie.h"
88 #include "net/http/http_network_session.h" 87 #include "net/http/http_network_session.h"
89 #include "net/http/http_transaction_factory.h" 88 #include "net/http/http_transaction_factory.h"
(...skipping 1265 matching lines...) Expand 10 before | Expand all | Expand 10 after
1355 void ProfileIOData::SetCookieSettingsForTesting( 1354 void ProfileIOData::SetCookieSettingsForTesting(
1356 content_settings::CookieSettings* cookie_settings) { 1355 content_settings::CookieSettings* cookie_settings) {
1357 DCHECK(!cookie_settings_.get()); 1356 DCHECK(!cookie_settings_.get());
1358 cookie_settings_ = cookie_settings; 1357 cookie_settings_ = cookie_settings;
1359 } 1358 }
1360 1359
1361 policy::URLBlacklist::URLBlacklistState ProfileIOData::GetURLBlacklistState( 1360 policy::URLBlacklist::URLBlacklistState ProfileIOData::GetURLBlacklistState(
1362 const GURL& url) const { 1361 const GURL& url) const {
1363 return url_blacklist_manager_->GetURLBlacklistState(url); 1362 return url_blacklist_manager_->GetURLBlacklistState(url);
1364 } 1363 }
OLDNEW
« no previous file with comments | « chrome/browser/profiles/profile_impl.cc ('k') | chrome/browser/task_manager/web_contents_tags.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698