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

Side by Side Diff: ui/views/examples/content_client/examples_browser_main_parts.h

Issue 74183002: Introduce ui/wm/ directory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm owners file so i can land this Created 7 years, 1 month 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 | « ui/views/DEPS ('k') | ui/views/examples/content_client/examples_browser_main_parts.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ 5 #ifndef UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
6 #define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ 6 #define UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "content/public/browser/browser_main_parts.h" 10 #include "content/public/browser/browser_main_parts.h"
11 11
12 namespace content { 12 namespace content {
13 class ShellBrowserContext; 13 class ShellBrowserContext;
14 struct MainFunctionParams; 14 struct MainFunctionParams;
15 } 15 }
16 16
17 namespace shell { 17 namespace wm {
18 class MinimalShell; 18 class MinimalShell;
19 } 19 }
20 20
21 namespace views { 21 namespace views {
22 class ViewsDelegate; 22 class ViewsDelegate;
23 23
24 namespace examples { 24 namespace examples {
25 25
26 class ExamplesBrowserMainParts : public content::BrowserMainParts { 26 class ExamplesBrowserMainParts : public content::BrowserMainParts {
27 public: 27 public:
(...skipping 10 matching lines...) Expand all
38 return browser_context_.get(); 38 return browser_context_.get();
39 } 39 }
40 40
41 private: 41 private:
42 scoped_ptr<content::ShellBrowserContext> browser_context_; 42 scoped_ptr<content::ShellBrowserContext> browser_context_;
43 43
44 scoped_ptr<ViewsDelegate> views_delegate_; 44 scoped_ptr<ViewsDelegate> views_delegate_;
45 45
46 #if defined(OS_CHROMEOS) 46 #if defined(OS_CHROMEOS)
47 // Enable a minimal set of views::corewm to be initialized. 47 // Enable a minimal set of views::corewm to be initialized.
48 scoped_ptr<shell::MinimalShell> minimal_shell_; 48 scoped_ptr<wm::MinimalShell> minimal_shell_;
49 #endif 49 #endif
50 50
51 DISALLOW_COPY_AND_ASSIGN(ExamplesBrowserMainParts); 51 DISALLOW_COPY_AND_ASSIGN(ExamplesBrowserMainParts);
52 }; 52 };
53 53
54 } // namespace examples 54 } // namespace examples
55 } // namespace views 55 } // namespace views
56 56
57 #endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_ 57 #endif // UI_VIEWS_EXAMPLES_CONTENT_CLIENT_EXAMPLES_BROWSER_MAIN_PARTS_H_
OLDNEW
« no previous file with comments | « ui/views/DEPS ('k') | ui/views/examples/content_client/examples_browser_main_parts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698