OLD | NEW |
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_WM_WINDOW_H_ |
6 #define ASH_COMMON_WM_WINDOW_H_ | 6 #define ASH_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 "base/macros.h" | 12 #include "base/macros.h" |
13 #include "base/observer_list.h" | 13 #include "base/observer_list.h" |
14 #include "base/strings/string16.h" | 14 #include "base/strings/string16.h" |
15 #include "base/time/time.h" | 15 #include "base/time/time.h" |
16 #include "ui/aura/window_observer.h" | 16 #include "ui/aura/window_observer.h" |
(...skipping 364 matching lines...) Loading... |
381 static bool default_use_empty_minimum_size_for_testing_; | 381 static bool default_use_empty_minimum_size_for_testing_; |
382 | 382 |
383 // If true the minimum size is 0x0, default is minimum size comes from widget. | 383 // If true the minimum size is 0x0, default is minimum size comes from widget. |
384 bool use_empty_minimum_size_for_testing_; | 384 bool use_empty_minimum_size_for_testing_; |
385 | 385 |
386 DISALLOW_COPY_AND_ASSIGN(WmWindow); | 386 DISALLOW_COPY_AND_ASSIGN(WmWindow); |
387 }; | 387 }; |
388 | 388 |
389 } // namespace ash | 389 } // namespace ash |
390 | 390 |
391 #endif // ASH_COMMON_WM_WINDOW_H_ | 391 #endif // ASH_WM_WINDOW_H_ |
OLD | NEW |