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/browser/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. ShellBrowserContext()11ShellBrowserContext::ShellBrowserContext() 12 : content::ShellBrowserContext(false, NULL) { 13 } 14 ~ShellBrowserContext()15ShellBrowserContext::~ShellBrowserContext() { 16 } 17 ProfileFunctionCallOnNonProfileBrowserContext1()18void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext1() { 19 NOTREACHED(); 20 } ProfileFunctionCallOnNonProfileBrowserContext2()21void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext2() { 22 NOTREACHED(); 23 } ProfileFunctionCallOnNonProfileBrowserContext3()24void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext3() { 25 NOTREACHED(); 26 } ProfileFunctionCallOnNonProfileBrowserContext4()27void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext4() { 28 NOTREACHED(); 29 } ProfileFunctionCallOnNonProfileBrowserContext5()30void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext5() { 31 NOTREACHED(); 32 } ProfileFunctionCallOnNonProfileBrowserContext6()33void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext6() { 34 NOTREACHED(); 35 } ProfileFunctionCallOnNonProfileBrowserContext7()36void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext7() { 37 NOTREACHED(); 38 } ProfileFunctionCallOnNonProfileBrowserContext8()39void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext8() { 40 NOTREACHED(); 41 } ProfileFunctionCallOnNonProfileBrowserContext9()42void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext9() { 43 NOTREACHED(); 44 } ProfileFunctionCallOnNonProfileBrowserContext10()45void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext10() { 46 NOTREACHED(); 47 } ProfileFunctionCallOnNonProfileBrowserContext11()48void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext11() { 49 NOTREACHED(); 50 } ProfileFunctionCallOnNonProfileBrowserContext12()51void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext12() { 52 NOTREACHED(); 53 } ProfileFunctionCallOnNonProfileBrowserContext13()54void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext13() { 55 NOTREACHED(); 56 } ProfileFunctionCallOnNonProfileBrowserContext14()57void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext14() { 58 NOTREACHED(); 59 } ProfileFunctionCallOnNonProfileBrowserContext15()60void ShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext15() { 61 NOTREACHED(); 62 } 63 64 } // namespace apps 65