| 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/file_util.h" | 10 #include "base/file_util.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |