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

Side by Side Diff: ui/views/view.h

Issue 23503086: Move DropTargetEvent back to ui/base for the time being as it depends on OSExchangeData which I don… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix windows bustage Created 7 years, 2 months 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/ui.gyp ('k') | ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11.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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_VIEWS_VIEW_H_ 5 #ifndef UI_VIEWS_VIEW_H_
6 #define UI_VIEWS_VIEW_H_ 6 #define UI_VIEWS_VIEW_H_
7 7
8 #include <algorithm> 8 #include <algorithm>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
15 #include "base/i18n/rtl.h" 15 #include "base/i18n/rtl.h"
16 #include "base/logging.h" 16 #include "base/logging.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "build/build_config.h" 18 #include "build/build_config.h"
19 #include "ui/base/accelerators/accelerator.h" 19 #include "ui/base/accelerators/accelerator.h"
20 #include "ui/base/accessibility/accessibility_types.h" 20 #include "ui/base/accessibility/accessibility_types.h"
21 #include "ui/base/dragdrop/drag_drop_types.h" 21 #include "ui/base/dragdrop/drag_drop_types.h"
22 #include "ui/base/dragdrop/drop_target_event.h"
22 #include "ui/base/dragdrop/os_exchange_data.h" 23 #include "ui/base/dragdrop/os_exchange_data.h"
23 #include "ui/base/ui_base_types.h" 24 #include "ui/base/ui_base_types.h"
24 #include "ui/compositor/layer_delegate.h" 25 #include "ui/compositor/layer_delegate.h"
25 #include "ui/compositor/layer_owner.h" 26 #include "ui/compositor/layer_owner.h"
26 #include "ui/events/event.h" 27 #include "ui/events/event.h"
27 #include "ui/events/event_target.h" 28 #include "ui/events/event_target.h"
28 #include "ui/gfx/native_widget_types.h" 29 #include "ui/gfx/native_widget_types.h"
29 #include "ui/gfx/rect.h" 30 #include "ui/gfx/rect.h"
30 #include "ui/gfx/vector2d.h" 31 #include "ui/gfx/vector2d.h"
31 #include "ui/views/background.h" 32 #include "ui/views/background.h"
(...skipping 1507 matching lines...) Expand 10 before | Expand all | Expand 10 after
1539 // Belongs to this view, but it's reference-counted on some platforms 1540 // Belongs to this view, but it's reference-counted on some platforms
1540 // so we can't use a scoped_ptr. It's dereferenced in the destructor. 1541 // so we can't use a scoped_ptr. It's dereferenced in the destructor.
1541 NativeViewAccessibility* native_view_accessibility_; 1542 NativeViewAccessibility* native_view_accessibility_;
1542 1543
1543 DISALLOW_COPY_AND_ASSIGN(View); 1544 DISALLOW_COPY_AND_ASSIGN(View);
1544 }; 1545 };
1545 1546
1546 } // namespace views 1547 } // namespace views
1547 1548
1548 #endif // UI_VIEWS_VIEW_H_ 1549 #endif // UI_VIEWS_VIEW_H_
OLDNEW
« no previous file with comments | « ui/ui.gyp ('k') | ui/views/widget/desktop_aura/desktop_drag_drop_client_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698