OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 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 #include "apps/shell/shell_browser_context.h" | 5 #include "apps/shell/browser/shell_browser_context.h" |
6 | 6 |
7 namespace apps { | 7 namespace apps { |
8 | 8 |
9 // Create a normal recording browser context. If we used an incognito context | 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. | 10 // then app_shell would also have to create a normal context and manage both. |
11 ShellBrowserContext::ShellBrowserContext() | 11 ShellBrowserContext::ShellBrowserContext() |
12 : content::ShellBrowserContext(false, NULL) { | 12 : content::ShellBrowserContext(false, NULL) { |
13 // TODO(jamescook): Could initialize NetLog here to get logs from the | 13 // TODO(jamescook): Could initialize NetLog here to get logs from the |
14 // networking stack. | 14 // networking stack. |
15 } | 15 } |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 NOTREACHED(); | 57 NOTREACHED(); |
58 } | 58 } |
59 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext14() { | 59 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext14() { |
60 NOTREACHED(); | 60 NOTREACHED(); |
61 } | 61 } |
62 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext15() { | 62 void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext15() { |
63 NOTREACHED(); | 63 NOTREACHED(); |
64 } | 64 } |
65 | 65 |
66 } // namespace apps | 66 } // namespace apps |
OLD | NEW |