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

Side by Side Diff: apps/shell/browser/default_shell_app_window_controller.cc

Issue 412713002: Move apps/shell to extensions/shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 40% Created 6 years, 5 months 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
OLDNEW
(Empty)
1 // Copyright 2014 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/default_shell_app_window_controller.h"
6
7 #include "apps/shell/browser/shell_app_window.h"
8 #include "apps/shell/browser/shell_desktop_controller.h"
9 #include "base/logging.h"
10 #include "ui/aura/window.h"
11 #include "ui/aura/window_tree_host.h"
12
13 namespace apps {
14
15 DefaultShellAppWindowController::DefaultShellAppWindowController(
16 ShellDesktopController* shell_desktop_controller)
17 : shell_desktop_controller_(shell_desktop_controller) {
18 DCHECK(shell_desktop_controller_);
19 }
20
21 DefaultShellAppWindowController::~DefaultShellAppWindowController() {
22 // The app window must be explicitly closed before desktop teardown.
23 DCHECK(!app_window_);
24 }
25
26 ShellAppWindow* DefaultShellAppWindowController::CreateAppWindow(
27 content::BrowserContext* context) {
28 aura::Window* root_window = shell_desktop_controller_->host()->window();
29
30 app_window_.reset(new ShellAppWindow);
31 app_window_->Init(context, root_window->bounds().size());
32
33 // Attach the web contents view to our window hierarchy.
34 aura::Window* content = app_window_->GetNativeWindow();
35 root_window->AddChild(content);
36 content->Show();
37
38 return app_window_.get();
39 }
40
41 void DefaultShellAppWindowController::CloseAppWindows() {
42 app_window_.reset();
43 }
44
45 } // namespace apps
OLDNEW
« no previous file with comments | « apps/shell/browser/default_shell_app_window_controller.h ('k') | apps/shell/browser/default_shell_browser_main_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698