OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_SOURCE_H_ | 5 #ifndef CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_SOURCE_H_ |
6 #define CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_SOURCE_H_ | 6 #define CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_SOURCE_H_ |
7 | 7 |
| 8 #include "app/gfx/native_widget_types.h" |
8 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
9 #include "base/gfx/native_widget_types.h" | |
10 #include "base/gfx/point.h" | 10 #include "base/gfx/point.h" |
11 #include "chrome/common/notification_observer.h" | 11 #include "chrome/common/notification_observer.h" |
12 #include "chrome/common/notification_registrar.h" | 12 #include "chrome/common/notification_registrar.h" |
13 | 13 |
14 // TODO(port): Port this file. | 14 // TODO(port): Port this file. |
15 #if defined(OS_WIN) | 15 #if defined(OS_WIN) |
16 #include "base/base_drag_source.h" | 16 #include "base/base_drag_source.h" |
17 #else | 17 #else |
18 #include "chrome/common/temp_scaffolding_stubs.h" | 18 #include "chrome/common/temp_scaffolding_stubs.h" |
19 #endif | 19 #endif |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 // drop events that it needs to know about (such as when a drag operation it | 59 // drop events that it needs to know about (such as when a drag operation it |
60 // initiated terminates). | 60 // initiated terminates). |
61 RenderViewHost* render_view_host_; | 61 RenderViewHost* render_view_host_; |
62 | 62 |
63 NotificationRegistrar registrar_; | 63 NotificationRegistrar registrar_; |
64 | 64 |
65 DISALLOW_COPY_AND_ASSIGN(WebDragSource); | 65 DISALLOW_COPY_AND_ASSIGN(WebDragSource); |
66 }; | 66 }; |
67 | 67 |
68 #endif // #ifndef CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_SOURCE_H_ | 68 #endif // #ifndef CHROME_BROWSER_TAB_CONTENTS_WEB_DRAG_SOURCE_H_ |
OLD | NEW |