OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_DRAG_DROP_DRAG_IMAGE_VIEW_H_ | 5 #ifndef ASH_DRAG_DROP_DRAG_IMAGE_VIEW_H_ |
6 #define ASH_DRAG_DROP_DRAG_IMAGE_VIEW_H_ | 6 #define ASH_DRAG_DROP_DRAG_IMAGE_VIEW_H_ |
7 #pragma once | |
8 | 7 |
9 #include "ui/views/controls/image_view.h" | 8 #include "ui/views/controls/image_view.h" |
10 | 9 |
11 namespace views { | 10 namespace views { |
12 class Widget; | 11 class Widget; |
13 } | 12 } |
14 | 13 |
15 namespace ash { | 14 namespace ash { |
16 namespace internal { | 15 namespace internal { |
17 | 16 |
(...skipping 14 matching lines...) Expand all Loading... |
32 private: | 31 private: |
33 scoped_ptr<views::Widget> widget_; | 32 scoped_ptr<views::Widget> widget_; |
34 | 33 |
35 DISALLOW_COPY_AND_ASSIGN(DragImageView); | 34 DISALLOW_COPY_AND_ASSIGN(DragImageView); |
36 }; | 35 }; |
37 | 36 |
38 } // namespace internal | 37 } // namespace internal |
39 } // namespace ash | 38 } // namespace ash |
40 | 39 |
41 #endif // ASH_DRAG_DROP_DRAG_IMAGE_VIEW_H_ | 40 #endif // ASH_DRAG_DROP_DRAG_IMAGE_VIEW_H_ |
OLD | NEW |