| OLD | NEW |
| 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/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 #include "components/browser_context_keyed_service/browser_context_dependency_ma
nager.h" | 44 #include "components/browser_context_keyed_service/browser_context_dependency_ma
nager.h" |
| 45 #include "components/user_prefs/user_prefs.h" | 45 #include "components/user_prefs/user_prefs.h" |
| 46 #include "content/public/browser/browser_thread.h" | 46 #include "content/public/browser/browser_thread.h" |
| 47 #include "content/public/browser/host_zoom_map.h" | 47 #include "content/public/browser/host_zoom_map.h" |
| 48 #include "content/public/browser/render_process_host.h" | 48 #include "content/public/browser/render_process_host.h" |
| 49 #include "content/public/browser/storage_partition.h" | 49 #include "content/public/browser/storage_partition.h" |
| 50 #include "content/public/browser/url_data_source.h" | 50 #include "content/public/browser/url_data_source.h" |
| 51 #include "content/public/browser/web_contents.h" | 51 #include "content/public/browser/web_contents.h" |
| 52 #include "net/http/http_server_properties.h" | 52 #include "net/http/http_server_properties.h" |
| 53 #include "net/http/transport_security_state.h" | 53 #include "net/http/transport_security_state.h" |
| 54 #include "webkit/database/database_tracker.h" | 54 #include "webkit/browser/database/database_tracker.h" |
| 55 | 55 |
| 56 #if defined(OS_ANDROID) || defined(OS_IOS) | 56 #if defined(OS_ANDROID) || defined(OS_IOS) |
| 57 #include "chrome/browser/prefs/scoped_user_pref_update.h" | 57 #include "chrome/browser/prefs/scoped_user_pref_update.h" |
| 58 #endif // defined(OS_ANDROID) || defined(OS_IOS) | 58 #endif // defined(OS_ANDROID) || defined(OS_IOS) |
| 59 | 59 |
| 60 #if defined(OS_CHROMEOS) | 60 #if defined(OS_CHROMEOS) |
| 61 #include "chrome/browser/chromeos/preferences.h" | 61 #include "chrome/browser/chromeos/preferences.h" |
| 62 #include "chrome/browser/chromeos/proxy_config_service_impl.h" | 62 #include "chrome/browser/chromeos/proxy_config_service_impl.h" |
| 63 #endif | 63 #endif |
| 64 | 64 |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 case HostZoomMap::ZOOM_CHANGED_FOR_HOST: | 461 case HostZoomMap::ZOOM_CHANGED_FOR_HOST: |
| 462 host_zoom_map->SetZoomLevelForHost(change.host, change.zoom_level); | 462 host_zoom_map->SetZoomLevelForHost(change.host, change.zoom_level); |
| 463 return; | 463 return; |
| 464 case HostZoomMap::ZOOM_CHANGED_FOR_SCHEME_AND_HOST: | 464 case HostZoomMap::ZOOM_CHANGED_FOR_SCHEME_AND_HOST: |
| 465 host_zoom_map->SetZoomLevelForHostAndScheme(change.scheme, | 465 host_zoom_map->SetZoomLevelForHostAndScheme(change.scheme, |
| 466 change.host, | 466 change.host, |
| 467 change.zoom_level); | 467 change.zoom_level); |
| 468 return; | 468 return; |
| 469 } | 469 } |
| 470 } | 470 } |
| OLD | NEW |