| 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 CONTENT_BROWSER_TAB_CONTENTS_WEB_DRAG_DEST_WIN_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_DRAG_DEST_WIN_H_ |
| 6 #define CONTENT_BROWSER_TAB_CONTENTS_WEB_DRAG_DEST_WIN_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_DRAG_DEST_WIN_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDragOperation.h" |
| 12 #include "ui/base/dragdrop/drop_target.h" | 12 #include "ui/base/dragdrop/drop_target.h" |
| 13 | 13 |
| 14 class InterstitialDropTarget; | 14 class InterstitialDropTarget; |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 // A special drop target handler for when we try to d&d while an interstitial | 71 // A special drop target handler for when we try to d&d while an interstitial |
| 72 // page is showing. | 72 // page is showing. |
| 73 scoped_ptr<InterstitialDropTarget> interstitial_drop_target_; | 73 scoped_ptr<InterstitialDropTarget> interstitial_drop_target_; |
| 74 | 74 |
| 75 // A delegate that can receive drag information about drag events. | 75 // A delegate that can receive drag information about drag events. |
| 76 content::WebDragDestDelegate* delegate_; | 76 content::WebDragDestDelegate* delegate_; |
| 77 | 77 |
| 78 DISALLOW_COPY_AND_ASSIGN(WebDragDest); | 78 DISALLOW_COPY_AND_ASSIGN(WebDragDest); |
| 79 }; | 79 }; |
| 80 | 80 |
| 81 #endif // CONTENT_BROWSER_TAB_CONTENTS_WEB_DRAG_DEST_WIN_H_ | 81 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_DRAG_DEST_WIN_H_ |
| OLD | NEW |