| OLD | NEW |
| 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/callback.h" | 12 #include "base/callback.h" |
| 13 #include "base/memory/linked_ptr.h" | 13 #include "base/memory/linked_ptr.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "content/browser/renderer_host/image_transport_factory.h" | 15 #include "content/browser/renderer_host/image_transport_factory.h" |
| 16 #include "content/browser/renderer_host/render_widget_host_view_base.h" | 16 #include "content/browser/renderer_host/render_widget_host_view_base.h" |
| 17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
| 18 #include "ui/aura/client/activation_delegate.h" | 18 #include "ui/aura/client/activation_delegate.h" |
| 19 #include "ui/aura/window_delegate.h" | 19 #include "ui/aura/window_delegate.h" |
| 20 #include "ui/base/ime/text_input_client.h" | 20 #include "ui/base/ime/text_input_client.h" |
| 21 #include "ui/gfx/compositor/compositor_observer.h" | 21 #include "ui/compositor/compositor_observer.h" |
| 22 #include "ui/gfx/rect.h" | 22 #include "ui/gfx/rect.h" |
| 23 #include "webkit/glue/webcursor.h" | 23 #include "webkit/glue/webcursor.h" |
| 24 | 24 |
| 25 namespace content { | 25 namespace content { |
| 26 class GLHelper; | 26 class GLHelper; |
| 27 class RenderWidgetHostImpl; | 27 class RenderWidgetHostImpl; |
| 28 class RenderWidgetHostView; | 28 class RenderWidgetHostView; |
| 29 } | 29 } |
| 30 | 30 |
| 31 namespace gfx { | 31 namespace gfx { |
| (...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 // These locks are the ones waiting for a texture of the right size to come | 301 // These locks are the ones waiting for a texture of the right size to come |
| 302 // back from the renderer/GPU process. | 302 // back from the renderer/GPU process. |
| 303 std::vector<linked_ptr<ResizeLock> > resize_locks_; | 303 std::vector<linked_ptr<ResizeLock> > resize_locks_; |
| 304 // These locks are the ones waiting for a frame to be drawn. | 304 // These locks are the ones waiting for a frame to be drawn. |
| 305 std::vector<linked_ptr<ResizeLock> > locks_pending_draw_; | 305 std::vector<linked_ptr<ResizeLock> > locks_pending_draw_; |
| 306 | 306 |
| 307 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); | 307 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); |
| 308 }; | 308 }; |
| 309 | 309 |
| 310 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ | 310 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ |
| OLD | NEW |