OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ | 5 #ifndef EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ |
6 #define EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ | 6 #define EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "content/shell/browser/shell_browser_context.h" | 10 #include "content/shell/browser/shell_browser_context.h" |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 virtual void ProfileFunctionCallOnNonProfileBrowserContext8(); | 47 virtual void ProfileFunctionCallOnNonProfileBrowserContext8(); |
48 virtual void ProfileFunctionCallOnNonProfileBrowserContext9(); | 48 virtual void ProfileFunctionCallOnNonProfileBrowserContext9(); |
49 virtual void ProfileFunctionCallOnNonProfileBrowserContext10(); | 49 virtual void ProfileFunctionCallOnNonProfileBrowserContext10(); |
50 virtual void ProfileFunctionCallOnNonProfileBrowserContext11(); | 50 virtual void ProfileFunctionCallOnNonProfileBrowserContext11(); |
51 virtual void ProfileFunctionCallOnNonProfileBrowserContext12(); | 51 virtual void ProfileFunctionCallOnNonProfileBrowserContext12(); |
52 virtual void ProfileFunctionCallOnNonProfileBrowserContext13(); | 52 virtual void ProfileFunctionCallOnNonProfileBrowserContext13(); |
53 virtual void ProfileFunctionCallOnNonProfileBrowserContext14(); | 53 virtual void ProfileFunctionCallOnNonProfileBrowserContext14(); |
54 virtual void ProfileFunctionCallOnNonProfileBrowserContext15(); | 54 virtual void ProfileFunctionCallOnNonProfileBrowserContext15(); |
55 | 55 |
56 private: | 56 private: |
57 void Init(); | 57 void InitURLRequestContextOnIOThread(); |
58 void InitializationOnIOThread(); | |
59 net::NetLog* net_log_; | 58 net::NetLog* net_log_; |
60 bool ignore_certificate_errors_; | |
61 scoped_refptr<storage::SpecialStoragePolicy> storage_policy_; | 59 scoped_refptr<storage::SpecialStoragePolicy> storage_policy_; |
62 scoped_refptr<net::URLRequestContextGetter> url_request_context_getter_; | |
63 | 60 |
64 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); | 61 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); |
65 }; | 62 }; |
66 | 63 |
67 } // namespace extensions | 64 } // namespace extensions |
68 | 65 |
69 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ | 66 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ |
OLD | NEW |