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

Side by Side Diff: ash/common/wm_window.h

Issue 2778733004: Add WindowPinType property on arua::Window (Closed)
Patch Set: Address review issue Created 3 years, 8 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
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 ASH_COMMON_WM_WINDOW_H_ 5 #ifndef ASH_COMMON_WM_WINDOW_H_
6 #define ASH_COMMON_WM_WINDOW_H_ 6 #define ASH_COMMON_WM_WINDOW_H_
7 7
8 #include <memory> 8 #include <memory>
9 #include <vector> 9 #include <vector>
10 10
11 #include "ash/ash_export.h" 11 #include "ash/ash_export.h"
12 #include "ash/public/cpp/window_properties.h"
sky 2017/04/03 16:38:56 Move includes to .cc? Also, do you really need bot
Peng 2017/04/03 18:03:48 Done.
12 #include "base/macros.h" 13 #include "base/macros.h"
13 #include "base/observer_list.h" 14 #include "base/observer_list.h"
14 #include "base/strings/string16.h" 15 #include "base/strings/string16.h"
15 #include "base/time/time.h" 16 #include "base/time/time.h"
17 #include "ui/aura/client/aura_constants.h"
16 #include "ui/aura/window_observer.h" 18 #include "ui/aura/window_observer.h"
17 #include "ui/base/ui_base_types.h" 19 #include "ui/base/ui_base_types.h"
18 #include "ui/compositor/layer_animation_element.h" 20 #include "ui/compositor/layer_animation_element.h"
19 #include "ui/wm/core/transient_window_observer.h" 21 #include "ui/wm/core/transient_window_observer.h"
20 #include "ui/wm/core/window_animations.h" 22 #include "ui/wm/core/window_animations.h"
21 #include "ui/wm/public/window_types.h" 23 #include "ui/wm/public/window_types.h"
22 24
23 namespace display { 25 namespace display {
24 class Display; 26 class Display;
25 } 27 }
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 381
380 // If true the minimum size is 0x0, default is minimum size comes from widget. 382 // If true the minimum size is 0x0, default is minimum size comes from widget.
381 bool use_empty_minimum_size_for_testing_; 383 bool use_empty_minimum_size_for_testing_;
382 384
383 DISALLOW_COPY_AND_ASSIGN(WmWindow); 385 DISALLOW_COPY_AND_ASSIGN(WmWindow);
384 }; 386 };
385 387
386 } // namespace ash 388 } // namespace ash
387 389
388 #endif // ASH_COMMON_WM_WINDOW_H_ 390 #endif // ASH_COMMON_WM_WINDOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698