Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: ui/views/widget/drop_target_gtk.h

Issue 8598031: views: Move widget/ directory to ui/views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: reland for real Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/views/widget/drop_helper.cc ('k') | ui/views/widget/drop_target_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 VIEWS_WIDGET_DROP_TARGET_GTK_H_ 5 #ifndef UI_VIEWS_WIDGET_DROP_TARGET_GTK_H_
6 #define VIEWS_WIDGET_DROP_TARGET_GTK_H_ 6 #define UI_VIEWS_WIDGET_DROP_TARGET_GTK_H_
7 #pragma once 7 #pragma once
8 8
9 #include <gtk/gtk.h> 9 #include <gtk/gtk.h>
10 #include <set> 10 #include <set>
11 11
12 #include "base/memory/scoped_ptr.h" 12 #include "base/memory/scoped_ptr.h"
13 #include "ui/base/dragdrop/os_exchange_data.h" 13 #include "ui/base/dragdrop/os_exchange_data.h"
14 #include "views/widget/drop_helper.h" 14 #include "ui/views/widget/drop_helper.h"
15 15
16 namespace ui { 16 namespace ui {
17 class OSExchangeDataProviderGtk; 17 class OSExchangeDataProviderGtk;
18 } 18 }
19 using ui::OSExchangeData; 19 using ui::OSExchangeData;
20 using ui::OSExchangeDataProviderGtk; 20 using ui::OSExchangeDataProviderGtk;
21 21
22 namespace views { 22 namespace views {
23 23
24 class View; 24 class View;
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 // The view under the mouse. This is not necessarily the same as 110 // The view under the mouse. This is not necessarily the same as
111 // helper_.target_view(). The two differ if the view under the mouse requires 111 // helper_.target_view(). The two differ if the view under the mouse requires
112 // the data. 112 // the data.
113 View* pending_view_; 113 View* pending_view_;
114 114
115 DISALLOW_COPY_AND_ASSIGN(DropTargetGtk); 115 DISALLOW_COPY_AND_ASSIGN(DropTargetGtk);
116 }; 116 };
117 117
118 } // namespace views 118 } // namespace views
119 119
120 #endif // VIEWS_WIDGET_DROP_TARGET_GTK_H_ 120 #endif // UI_VIEWS_WIDGET_DROP_TARGET_GTK_H_
OLDNEW
« no previous file with comments | « ui/views/widget/drop_helper.cc ('k') | ui/views/widget/drop_target_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698