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

Side by Side Diff: ui/wm/test/minimal_shell.cc

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/wm/test/minimal_shell.h ('k') | ui/wm/wm.gyp » ('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 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 "ui/shell/minimal_shell.h" 5 #include "ui/wm/test/minimal_shell.h"
6 6
7 #include "ui/aura/client/default_activation_client.h" 7 #include "ui/aura/client/default_activation_client.h"
8 #include "ui/aura/client/default_capture_client.h" 8 #include "ui/aura/client/default_capture_client.h"
9 #include "ui/aura/env.h" 9 #include "ui/aura/env.h"
10 #include "ui/aura/root_window.h" 10 #include "ui/aura/root_window.h"
11 #include "ui/aura/test/test_focus_client.h" 11 #include "ui/aura/test/test_focus_client.h"
12 #include "ui/views/corewm/compound_event_filter.h" 12 #include "ui/views/corewm/compound_event_filter.h"
13 #include "ui/views/corewm/input_method_event_filter.h" 13 #include "ui/views/corewm/input_method_event_filter.h"
14 14
15 namespace shell { 15 namespace wm {
16 16
17 MinimalShell::MinimalShell(const gfx::Size& default_window_size) { 17 MinimalShell::MinimalShell(const gfx::Size& default_window_size) {
18 aura::Env::CreateInstance(); 18 aura::Env::CreateInstance();
19 root_window_.reset(new aura::RootWindow( 19 root_window_.reset(new aura::RootWindow(
20 aura::RootWindow::CreateParams( 20 aura::RootWindow::CreateParams(
21 gfx::Rect(default_window_size)))); 21 gfx::Rect(default_window_size))));
22 root_window_->Init(); 22 root_window_->Init();
23 aura::client::SetWindowTreeClient(root_window_->window(), this); 23 aura::client::SetWindowTreeClient(root_window_->window(), this);
24 24
25 focus_client_.reset(new aura::test::TestFocusClient); 25 focus_client_.reset(new aura::test::TestFocusClient);
(...skipping 20 matching lines...) Expand all
46 root_window_event_filter_->RemoveHandler(input_method_filter_.get()); 46 root_window_event_filter_->RemoveHandler(input_method_filter_.get());
47 } 47 }
48 48
49 aura::Window* MinimalShell::GetDefaultParent( 49 aura::Window* MinimalShell::GetDefaultParent(
50 aura::Window* context, 50 aura::Window* context,
51 aura::Window* window, 51 aura::Window* window,
52 const gfx::Rect& bounds) { 52 const gfx::Rect& bounds) {
53 return root_window_->window(); 53 return root_window_->window();
54 } 54 }
55 55
56 } // namespace shell 56 } // namespace wm
OLDNEW
« no previous file with comments | « ui/wm/test/minimal_shell.h ('k') | ui/wm/wm.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698