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

Side by Side Diff: athena/test/base/test_windows.h

Issue 863033002: Delete athena/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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
« no previous file with comments | « athena/test/base/test_util.cc ('k') | athena/test/base/test_windows.cc » ('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 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 #ifndef ATHENA_TEST_BASE_TEST_WINDOWS_H_
6 #define ATHENA_TEST_BASE_TEST_WINDOWS_H_
7
8 #include "base/memory/scoped_ptr.h"
9 #include "ui/base/ui_base_types.h"
10 #include "ui/wm/public/window_types.h"
11
12 namespace aura {
13 class Window;
14 class WindowDelegate;
15 }
16
17 namespace gfx {
18 class Rect;
19 }
20
21 namespace athena {
22 namespace test {
23
24 scoped_ptr<aura::Window> CreateNormalWindow(aura::WindowDelegate* delegate,
25 aura::Window* parent);
26
27 scoped_ptr<aura::Window> CreateWindowWithType(aura::WindowDelegate* delegate,
28 aura::Window* parent,
29 ui::wm::WindowType window_type);
30
31 scoped_ptr<aura::Window> CreateTransientWindow(aura::WindowDelegate* delegate,
32 aura::Window* transient_parent,
33 ui::ModalType modal_type,
34 bool top_most);
35
36 } // namespace test
37 } // namespace athena
38
39 #endif // ATHENA_TEST_BASE_TEST_WINDOWS_H_
OLDNEW
« no previous file with comments | « athena/test/base/test_util.cc ('k') | athena/test/base/test_windows.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698