| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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.h" | 5 #include "chrome/browser/profiles/profile.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "app/resource_bundle.h" | 9 #include "app/resource_bundle.h" |
| 10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "chrome/common/json_pref_store.h" | 34 #include "chrome/common/json_pref_store.h" |
| 35 #include "chrome/common/notification_service.h" | 35 #include "chrome/common/notification_service.h" |
| 36 #include "chrome/common/pref_names.h" | 36 #include "chrome/common/pref_names.h" |
| 37 #include "chrome/common/render_messages.h" | 37 #include "chrome/common/render_messages.h" |
| 38 #include "grit/browser_resources.h" | 38 #include "grit/browser_resources.h" |
| 39 #include "grit/locale_settings.h" | 39 #include "grit/locale_settings.h" |
| 40 #include "net/base/transport_security_state.h" | 40 #include "net/base/transport_security_state.h" |
| 41 #include "webkit/database/database_tracker.h" | 41 #include "webkit/database/database_tracker.h" |
| 42 | 42 |
| 43 #if defined(TOOLKIT_USES_GTK) | 43 #if defined(TOOLKIT_USES_GTK) |
| 44 #include "chrome/browser/gtk/gtk_theme_provider.h" | 44 #include "chrome/browser/ui/gtk/gtk_theme_provider.h" |
| 45 #endif | 45 #endif |
| 46 | 46 |
| 47 #if defined(OS_WIN) | 47 #if defined(OS_WIN) |
| 48 #include "chrome/browser/password_manager/password_store_win.h" | 48 #include "chrome/browser/password_manager/password_store_win.h" |
| 49 #elif defined(OS_MACOSX) | 49 #elif defined(OS_MACOSX) |
| 50 #include "chrome/browser/keychain_mac.h" | 50 #include "chrome/browser/keychain_mac.h" |
| 51 #include "chrome/browser/password_manager/password_store_mac.h" | 51 #include "chrome/browser/password_manager/password_store_mac.h" |
| 52 #elif defined(OS_POSIX) && !defined(OS_CHROMEOS) | 52 #elif defined(OS_POSIX) && !defined(OS_CHROMEOS) |
| 53 #include "chrome/browser/password_manager/native_backend_gnome_x.h" | 53 #include "chrome/browser/password_manager/native_backend_gnome_x.h" |
| 54 #include "chrome/browser/password_manager/native_backend_kwallet_x.h" | 54 #include "chrome/browser/password_manager/native_backend_kwallet_x.h" |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 682 | 682 |
| 683 // The file_system context for this profile. | 683 // The file_system context for this profile. |
| 684 scoped_refptr<fileapi::SandboxedFileSystemContext> file_system_context_; | 684 scoped_refptr<fileapi::SandboxedFileSystemContext> file_system_context_; |
| 685 | 685 |
| 686 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); | 686 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileImpl); |
| 687 }; | 687 }; |
| 688 | 688 |
| 689 Profile* Profile::CreateOffTheRecordProfile() { | 689 Profile* Profile::CreateOffTheRecordProfile() { |
| 690 return new OffTheRecordProfileImpl(this); | 690 return new OffTheRecordProfileImpl(this); |
| 691 } | 691 } |
| OLD | NEW |