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

Side by Side Diff: content/shell/shell_browser_context.cc

Issue 14767019: [content shell] move code common to several processes to a common dir (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/shell/shell.cc ('k') | content/shell/shell_browser_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "content/shell/shell_browser_context.h" 5 #include "content/shell/shell_browser_context.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/environment.h" 9 #include "base/environment.h"
10 #include "base/file_util.h" 10 #include "base/file_util.h"
11 #include "base/logging.h" 11 #include "base/logging.h"
12 #include "base/path_service.h" 12 #include "base/path_service.h"
13 #include "base/threading/thread.h" 13 #include "base/threading/thread.h"
14 #include "content/public/browser/browser_thread.h" 14 #include "content/public/browser/browser_thread.h"
15 #include "content/public/browser/resource_context.h" 15 #include "content/public/browser/resource_context.h"
16 #include "content/public/browser/storage_partition.h" 16 #include "content/public/browser/storage_partition.h"
17 #include "content/public/common/content_switches.h" 17 #include "content/public/common/content_switches.h"
18 #include "content/shell/common/shell_switches.h"
18 #include "content/shell/shell_download_manager_delegate.h" 19 #include "content/shell/shell_download_manager_delegate.h"
19 #include "content/shell/shell_switches.h"
20 #include "content/shell/shell_url_request_context_getter.h" 20 #include "content/shell/shell_url_request_context_getter.h"
21 21
22 #if defined(OS_WIN) 22 #if defined(OS_WIN)
23 #include "base/base_paths_win.h" 23 #include "base/base_paths_win.h"
24 #elif defined(OS_LINUX) 24 #elif defined(OS_LINUX)
25 #include "base/nix/xdg_util.h" 25 #include "base/nix/xdg_util.h"
26 #elif defined(OS_MACOSX) 26 #elif defined(OS_MACOSX)
27 #include "base/base_paths_mac.h" 27 #include "base/base_paths_mac.h"
28 #endif 28 #endif
29 29
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 SpeechRecognitionPreferences* 187 SpeechRecognitionPreferences*
188 ShellBrowserContext::GetSpeechRecognitionPreferences() { 188 ShellBrowserContext::GetSpeechRecognitionPreferences() {
189 return NULL; 189 return NULL;
190 } 190 }
191 191
192 quota::SpecialStoragePolicy* ShellBrowserContext::GetSpecialStoragePolicy() { 192 quota::SpecialStoragePolicy* ShellBrowserContext::GetSpecialStoragePolicy() {
193 return NULL; 193 return NULL;
194 } 194 }
195 195
196 } // namespace content 196 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/shell.cc ('k') | content/shell/shell_browser_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698