OLD | NEW |
| (Empty) |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "apps/shell/shell_browser_context.h" | |
6 | |
7 namespace apps { | |
8 | |
9 // Create a normal recording browser context. If we used an incognito context | |
10 // then app_shell would also have to create a normal context and manage both. | |
11 ShellBrowserContext::ShellBrowserContext() | |
12 : content::ShellBrowserContext(false, NULL) { | |
13 // TODO(jamescook): Could initialize NetLog here to get logs from the | |
14 // networking stack. | |
15 } | |
16 | |
17 ShellBrowserContext::~ShellBrowserContext() { | |
18 } | |
19 | |
20 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext1() { | |
21 NOTREACHED(); | |
22 } | |
23 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext2() { | |
24 NOTREACHED(); | |
25 } | |
26 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext3() { | |
27 NOTREACHED(); | |
28 } | |
29 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext4() { | |
30 NOTREACHED(); | |
31 } | |
32 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext5() { | |
33 NOTREACHED(); | |
34 } | |
35 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext6() { | |
36 NOTREACHED(); | |
37 } | |
38 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext7() { | |
39 NOTREACHED(); | |
40 } | |
41 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext8() { | |
42 NOTREACHED(); | |
43 } | |
44 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext9() { | |
45 NOTREACHED(); | |
46 } | |
47 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext10() { | |
48 NOTREACHED(); | |
49 } | |
50 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext11() { | |
51 NOTREACHED(); | |
52 } | |
53 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext12() { | |
54 NOTREACHED(); | |
55 } | |
56 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext13() { | |
57 NOTREACHED(); | |
58 } | |
59 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext14() { | |
60 NOTREACHED(); | |
61 } | |
62 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext15() { | |
63 NOTREACHED(); | |
64 } | |
65 | |
66 } // namespace apps | |
OLD | NEW |