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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_aura.h

Issue 201473002: Move webcursors code from webkit/ to content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes Created 6 years, 9 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
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 CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/callback.h" 13 #include "base/callback.h"
14 #include "base/gtest_prod_util.h" 14 #include "base/gtest_prod_util.h"
15 #include "base/memory/linked_ptr.h" 15 #include "base/memory/linked_ptr.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/memory/weak_ptr.h" 18 #include "base/memory/weak_ptr.h"
19 #include "cc/layers/delegated_frame_provider.h" 19 #include "cc/layers/delegated_frame_provider.h"
20 #include "cc/layers/delegated_frame_resource_collection.h" 20 #include "cc/layers/delegated_frame_resource_collection.h"
21 #include "cc/resources/texture_mailbox.h" 21 #include "cc/resources/texture_mailbox.h"
22 #include "content/browser/accessibility/browser_accessibility_manager.h" 22 #include "content/browser/accessibility/browser_accessibility_manager.h"
23 #include "content/browser/compositor/image_transport_factory.h" 23 #include "content/browser/compositor/image_transport_factory.h"
24 #include "content/browser/compositor/owned_mailbox.h" 24 #include "content/browser/compositor/owned_mailbox.h"
25 #include "content/browser/renderer_host/delegated_frame_evictor.h" 25 #include "content/browser/renderer_host/delegated_frame_evictor.h"
26 #include "content/browser/renderer_host/render_widget_host_view_base.h" 26 #include "content/browser/renderer_host/render_widget_host_view_base.h"
27 #include "content/browser/renderer_host/software_frame_manager.h" 27 #include "content/browser/renderer_host/software_frame_manager.h"
28 #include "content/common/content_export.h" 28 #include "content/common/content_export.h"
29 #include "content/common/cursors/webcursor.h"
29 #include "content/common/gpu/client/gl_helper.h" 30 #include "content/common/gpu/client/gl_helper.h"
30 #include "third_party/skia/include/core/SkRegion.h" 31 #include "third_party/skia/include/core/SkRegion.h"
31 #include "ui/aura/client/activation_change_observer.h" 32 #include "ui/aura/client/activation_change_observer.h"
32 #include "ui/aura/client/activation_delegate.h" 33 #include "ui/aura/client/activation_delegate.h"
33 #include "ui/aura/client/cursor_client_observer.h" 34 #include "ui/aura/client/cursor_client_observer.h"
34 #include "ui/aura/client/focus_change_observer.h" 35 #include "ui/aura/client/focus_change_observer.h"
35 #include "ui/aura/window_delegate.h" 36 #include "ui/aura/window_delegate.h"
36 #include "ui/aura/window_tree_host_observer.h" 37 #include "ui/aura/window_tree_host_observer.h"
37 #include "ui/base/ime/text_input_client.h" 38 #include "ui/base/ime/text_input_client.h"
38 #include "ui/compositor/compositor.h" 39 #include "ui/compositor/compositor.h"
39 #include "ui/compositor/compositor_observer.h" 40 #include "ui/compositor/compositor_observer.h"
40 #include "ui/compositor/compositor_vsync_manager.h" 41 #include "ui/compositor/compositor_vsync_manager.h"
41 #include "ui/gfx/display_observer.h" 42 #include "ui/gfx/display_observer.h"
42 #include "ui/gfx/rect.h" 43 #include "ui/gfx/rect.h"
43 #include "webkit/common/cursors/webcursor.h"
44 44
45 namespace aura { 45 namespace aura {
46 class WindowTracker; 46 class WindowTracker;
47 namespace client { 47 namespace client {
48 class ScopedTooltipDisabler; 48 class ScopedTooltipDisabler;
49 } 49 }
50 } 50 }
51 51
52 namespace cc { 52 namespace cc {
53 class CopyOutputRequest; 53 class CopyOutputRequest;
(...skipping 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 // etc. 792 // etc.
793 scoped_ptr<content::LegacyRenderWidgetHostHWND> 793 scoped_ptr<content::LegacyRenderWidgetHostHWND>
794 legacy_render_widget_host_HWND_; 794 legacy_render_widget_host_HWND_;
795 #endif 795 #endif
796 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 796 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
797 }; 797 };
798 798
799 } // namespace content 799 } // namespace content
800 800
801 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 801 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698