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

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

Issue 12680003: net: split net/ssl out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 9 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 | Annotate | Revision Log
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/off_the_record_profile_impl.h" 5 #include "chrome/browser/profiles/off_the_record_profile_impl.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/command_line.h" 8 #include "base/command_line.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
(...skipping 30 matching lines...) Expand all
41 #include "chrome/common/extensions/extension.h" 41 #include "chrome/common/extensions/extension.h"
42 #include "chrome/common/pref_names.h" 42 #include "chrome/common/pref_names.h"
43 #include "chrome/common/render_messages.h" 43 #include "chrome/common/render_messages.h"
44 #include "components/user_prefs/user_prefs.h" 44 #include "components/user_prefs/user_prefs.h"
45 #include "content/public/browser/browser_thread.h" 45 #include "content/public/browser/browser_thread.h"
46 #include "content/public/browser/host_zoom_map.h" 46 #include "content/public/browser/host_zoom_map.h"
47 #include "content/public/browser/render_process_host.h" 47 #include "content/public/browser/render_process_host.h"
48 #include "content/public/browser/storage_partition.h" 48 #include "content/public/browser/storage_partition.h"
49 #include "content/public/browser/url_data_source.h" 49 #include "content/public/browser/url_data_source.h"
50 #include "content/public/browser/web_contents.h" 50 #include "content/public/browser/web_contents.h"
51 #include "net/base/transport_security_state.h"
52 #include "net/http/http_server_properties.h" 51 #include "net/http/http_server_properties.h"
52 #include "net/http/transport_security_state.h"
53 #include "webkit/database/database_tracker.h" 53 #include "webkit/database/database_tracker.h"
54 54
55 #if defined(OS_ANDROID) 55 #if defined(OS_ANDROID)
56 #include "chrome/browser/prefs/scoped_user_pref_update.h" 56 #include "chrome/browser/prefs/scoped_user_pref_update.h"
57 #endif 57 #endif
58 58
59 #if defined(OS_CHROMEOS) 59 #if defined(OS_CHROMEOS)
60 #include "chrome/browser/chromeos/preferences.h" 60 #include "chrome/browser/chromeos/preferences.h"
61 #include "chrome/browser/chromeos/proxy_config_service_impl.h" 61 #include "chrome/browser/chromeos/proxy_config_service_impl.h"
62 #endif 62 #endif
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
473 case HostZoomMap::ZOOM_CHANGED_FOR_HOST: 473 case HostZoomMap::ZOOM_CHANGED_FOR_HOST:
474 host_zoom_map->SetZoomLevelForHost(change.host, change.zoom_level); 474 host_zoom_map->SetZoomLevelForHost(change.host, change.zoom_level);
475 return; 475 return;
476 case HostZoomMap::ZOOM_CHANGED_FOR_SCHEME_AND_HOST: 476 case HostZoomMap::ZOOM_CHANGED_FOR_SCHEME_AND_HOST:
477 host_zoom_map->SetZoomLevelForHostAndScheme(change.scheme, 477 host_zoom_map->SetZoomLevelForHostAndScheme(change.scheme,
478 change.host, 478 change.host,
479 change.zoom_level); 479 change.zoom_level);
480 return; 480 return;
481 } 481 }
482 } 482 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/cloud/device_management_service.cc ('k') | chrome/browser/profiles/off_the_record_profile_io_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698