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 #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 Loading... |
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_ |
OLD | NEW |