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

Side by Side Diff: content/shell/shell_browser_main.h

Issue 8366020: Create a secondary file thread, FILE_USER_BLOCKING... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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) 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 #ifndef CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ 5 #ifndef CONTENT_SHELL_SHELL_BROWSER_MAIN_H_
6 #define CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ 6 #define CONTENT_SHELL_SHELL_BROWSER_MAIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "content/browser/browser_main.h" 10 #include "content/browser/browser_main.h"
(...skipping 29 matching lines...) Expand all
40 scoped_ptr<ShellBrowserContext> browser_context_; 40 scoped_ptr<ShellBrowserContext> browser_context_;
41 41
42 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_; 42 scoped_ptr<ResourceDispatcherHost> resource_dispatcher_host_;
43 scoped_ptr<ui::Clipboard> clipboard_; 43 scoped_ptr<ui::Clipboard> clipboard_;
44 44
45 scoped_ptr<base::Thread> io_thread_; 45 scoped_ptr<base::Thread> io_thread_;
46 scoped_ptr<base::Thread> file_thread_; 46 scoped_ptr<base::Thread> file_thread_;
47 scoped_ptr<base::Thread> db_thread_; 47 scoped_ptr<base::Thread> db_thread_;
48 scoped_ptr<base::Thread> process_launcher_thread_; 48 scoped_ptr<base::Thread> process_launcher_thread_;
49 scoped_ptr<base::Thread> cache_thread_; 49 scoped_ptr<base::Thread> cache_thread_;
50 scoped_ptr<base::Thread> appcache_thread_;
50 51
51 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts); 52 DISALLOW_COPY_AND_ASSIGN(ShellBrowserMainParts);
52 }; 53 };
53 54
54 } // namespace content 55 } // namespace content
55 56
56 #endif // CONTENT_SHELL_SHELL_BROWSER_MAIN_H_ 57 #endif // CONTENT_SHELL_SHELL_BROWSER_MAIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698