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

Side by Side Diff: extensions/shell/browser/shell_browser_context.h

Issue 615583003: Introduce NetworkDelegate's implementation in extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
OLDNEW
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"
11 #include "storage/browser/quota/special_storage_policy.h" 11 #include "storage/browser/quota/special_storage_policy.h"
12 12
13 namespace extensions { 13 namespace extensions {
14 14
15 class InfoMap;
15 class ShellSpecialStoragePolicy; 16 class ShellSpecialStoragePolicy;
16 17
17 // The BrowserContext used by the content, apps and extensions systems in 18 // The BrowserContext used by the content, apps and extensions systems in
18 // app_shell. 19 // app_shell.
19 class ShellBrowserContext : public content::ShellBrowserContext { 20 class ShellBrowserContext : public content::ShellBrowserContext {
20 public: 21 public:
21 ShellBrowserContext(); 22 ShellBrowserContext();
22 virtual ~ShellBrowserContext(); 23 virtual ~ShellBrowserContext();
23 24
24 // content::BrowserContext implementation. 25 // content::BrowserContext implementation.
25 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE; 26 virtual content::BrowserPluginGuestManager* GetGuestManager() OVERRIDE;
26 virtual storage::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; 27 virtual storage::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE;
27 28
29 // content::ShellBrowserContext implementation.
30 virtual content::ShellURLRequestContextGetter* CreateURLRequestContextGetter(
31 content::ProtocolHandlerMap* protocol_handlers,
32 content::URLRequestInterceptorScopedVector request_interceptors) OVERRIDE;
33
34 net::URLRequestContextGetter* CreateRequestContext(
35 content::ProtocolHandlerMap* protocol_handlers,
36 content::URLRequestInterceptorScopedVector request_interceptors,
37 content::BrowserContext* browser_context,
38 InfoMap* extension_info_map);
39
28 // HACK: Pad the virtual function table so we trip an assertion if someone 40 // HACK: Pad the virtual function table so we trip an assertion if someone
29 // tries to use |this| as a Profile. 41 // tries to use |this| as a Profile.
30 virtual void ProfileFunctionCallOnNonProfileBrowserContext1(); 42 virtual void ProfileFunctionCallOnNonProfileBrowserContext1();
31 virtual void ProfileFunctionCallOnNonProfileBrowserContext2(); 43 virtual void ProfileFunctionCallOnNonProfileBrowserContext2();
32 virtual void ProfileFunctionCallOnNonProfileBrowserContext3(); 44 virtual void ProfileFunctionCallOnNonProfileBrowserContext3();
33 virtual void ProfileFunctionCallOnNonProfileBrowserContext4(); 45 virtual void ProfileFunctionCallOnNonProfileBrowserContext4();
34 virtual void ProfileFunctionCallOnNonProfileBrowserContext5(); 46 virtual void ProfileFunctionCallOnNonProfileBrowserContext5();
35 virtual void ProfileFunctionCallOnNonProfileBrowserContext6(); 47 virtual void ProfileFunctionCallOnNonProfileBrowserContext6();
36 virtual void ProfileFunctionCallOnNonProfileBrowserContext7(); 48 virtual void ProfileFunctionCallOnNonProfileBrowserContext7();
37 virtual void ProfileFunctionCallOnNonProfileBrowserContext8(); 49 virtual void ProfileFunctionCallOnNonProfileBrowserContext8();
38 virtual void ProfileFunctionCallOnNonProfileBrowserContext9(); 50 virtual void ProfileFunctionCallOnNonProfileBrowserContext9();
39 virtual void ProfileFunctionCallOnNonProfileBrowserContext10(); 51 virtual void ProfileFunctionCallOnNonProfileBrowserContext10();
40 virtual void ProfileFunctionCallOnNonProfileBrowserContext11(); 52 virtual void ProfileFunctionCallOnNonProfileBrowserContext11();
41 virtual void ProfileFunctionCallOnNonProfileBrowserContext12(); 53 virtual void ProfileFunctionCallOnNonProfileBrowserContext12();
42 virtual void ProfileFunctionCallOnNonProfileBrowserContext13(); 54 virtual void ProfileFunctionCallOnNonProfileBrowserContext13();
43 virtual void ProfileFunctionCallOnNonProfileBrowserContext14(); 55 virtual void ProfileFunctionCallOnNonProfileBrowserContext14();
44 virtual void ProfileFunctionCallOnNonProfileBrowserContext15(); 56 virtual void ProfileFunctionCallOnNonProfileBrowserContext15();
45 57
46 private: 58 private:
47 scoped_refptr<storage::SpecialStoragePolicy> storage_policy_; 59 scoped_refptr<storage::SpecialStoragePolicy> storage_policy_;
48 60
49 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); 61 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext);
50 }; 62 };
51 63
52 } // namespace extensions 64 } // namespace extensions
53 65
54 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ 66 #endif // EXTENSIONS_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698