| 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 UI_AURA_SHELL_DRAG_IMAGE_VIEW_H_ | 5 #ifndef UI_AURA_SHELL_DRAG_IMAGE_VIEW_H_ |
| 6 #define UI_AURA_SHELL_DRAG_IMAGE_VIEW_H_ | 6 #define UI_AURA_SHELL_DRAG_IMAGE_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "views/controls/image_view.h" | 9 #include "ui/views/controls/image_view.h" |
| 10 | 10 |
| 11 namespace views { | 11 namespace views { |
| 12 class Widget; | 12 class Widget; |
| 13 } | 13 } |
| 14 | 14 |
| 15 namespace aura_shell { | 15 namespace aura_shell { |
| 16 namespace internal { | 16 namespace internal { |
| 17 | 17 |
| 18 class DragImageView : public views::ImageView { | 18 class DragImageView : public views::ImageView { |
| 19 public: | 19 public: |
| (...skipping 12 matching lines...) Expand all Loading... |
| 32 private: | 32 private: |
| 33 scoped_ptr<views::Widget> widget_; | 33 scoped_ptr<views::Widget> widget_; |
| 34 | 34 |
| 35 DISALLOW_COPY_AND_ASSIGN(DragImageView); | 35 DISALLOW_COPY_AND_ASSIGN(DragImageView); |
| 36 }; | 36 }; |
| 37 | 37 |
| 38 } // namespace internal | 38 } // namespace internal |
| 39 } // namespace aura_shell | 39 } // namespace aura_shell |
| 40 | 40 |
| 41 #endif // UI_AURA_SHELL_DRAG_IMAGE_VIEW_H_ | 41 #endif // UI_AURA_SHELL_DRAG_IMAGE_VIEW_H_ |
| OLD | NEW |