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

Side by Side Diff: apps/shell/app_shell_browser_context.cc

Issue 99053008: Rename apps::AppShell* to apps::Shell* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | Annotate | Revision Log
« no previous file with comments | « apps/shell/app_shell_browser_context.h ('k') | apps/shell/app_shell_browser_main_parts.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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/app_shell_browser_context.h"
6
7 #include "apps/app_load_service_factory.h"
8
9 namespace {
10
11 // See ChromeBrowserMainExtraPartsProfiles for details.
12 void EnsureBrowserContextKeyedServiceFactoriesBuilt() {
13 apps::AppLoadServiceFactory::GetInstance();
14 }
15
16 } // namespace
17
18 namespace apps {
19
20 // TODO(jamescook): Should this be an off-the-record context?
21 // TODO(jamescook): Could initialize NetLog here to get logs from the networking
22 // stack.
23 AppShellBrowserContext::AppShellBrowserContext()
24 : content::ShellBrowserContext(false, NULL) {
25 EnsureBrowserContextKeyedServiceFactoriesBuilt();
26 }
27
28 AppShellBrowserContext::~AppShellBrowserContext() {
29 }
30
31 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext1() {
32 NOTREACHED();
33 }
34 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext2() {
35 NOTREACHED();
36 }
37 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext3() {
38 NOTREACHED();
39 }
40 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext4() {
41 NOTREACHED();
42 }
43 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext5() {
44 NOTREACHED();
45 }
46 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext6() {
47 NOTREACHED();
48 }
49 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext7() {
50 NOTREACHED();
51 }
52 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext8() {
53 NOTREACHED();
54 }
55 void AppShellBrowserContext::ProfileFunctionCallOnNonProfileBrowserContext9() {
56 NOTREACHED();
57 }
58
59 } // namespace apps
OLDNEW
« no previous file with comments | « apps/shell/app_shell_browser_context.h ('k') | apps/shell/app_shell_browser_main_parts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698