OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 UI_AURA_WINDOW_H_ | 5 #ifndef UI_AURA_WINDOW_H_ |
6 #define UI_AURA_WINDOW_H_ | 6 #define UI_AURA_WINDOW_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/memory/scoped_ptr.h" | 14 #include "base/memory/scoped_ptr.h" |
15 #include "base/observer_list.h" | 15 #include "base/observer_list.h" |
16 #include "base/string16.h" | 16 #include "base/strings/string16.h" |
17 #include "ui/aura/aura_export.h" | 17 #include "ui/aura/aura_export.h" |
18 #include "ui/aura/client/window_types.h" | 18 #include "ui/aura/client/window_types.h" |
19 #include "ui/aura/window_observer.h" | 19 #include "ui/aura/window_observer.h" |
20 #include "ui/base/events/event_constants.h" | 20 #include "ui/base/events/event_constants.h" |
21 #include "ui/base/events/event_target.h" | 21 #include "ui/base/events/event_target.h" |
22 #include "ui/base/gestures/gesture_types.h" | 22 #include "ui/base/gestures/gesture_types.h" |
23 #include "ui/compositor/layer_animator.h" | 23 #include "ui/compositor/layer_animator.h" |
24 #include "ui/compositor/layer_delegate.h" | 24 #include "ui/compositor/layer_delegate.h" |
25 #include "ui/compositor/layer_owner.h" | 25 #include "ui/compositor/layer_owner.h" |
26 #include "ui/compositor/layer_type.h" | 26 #include "ui/compositor/layer_type.h" |
(...skipping 489 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
516 }; | 516 }; |
517 | 517 |
518 std::map<const void*, Value> prop_map_; | 518 std::map<const void*, Value> prop_map_; |
519 | 519 |
520 DISALLOW_COPY_AND_ASSIGN(Window); | 520 DISALLOW_COPY_AND_ASSIGN(Window); |
521 }; | 521 }; |
522 | 522 |
523 } // namespace aura | 523 } // namespace aura |
524 | 524 |
525 #endif // UI_AURA_WINDOW_H_ | 525 #endif // UI_AURA_WINDOW_H_ |
OLD | NEW |