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

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

Issue 2773433003: Fix CompositorResizeLock to do something. (Closed)
Patch Set: resizelock: observer-rebase Created 3 years, 8 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
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 <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 10 matching lines...) Expand all
21 #include "base/memory/ref_counted.h" 21 #include "base/memory/ref_counted.h"
22 #include "base/memory/weak_ptr.h" 22 #include "base/memory/weak_ptr.h"
23 #include "build/build_config.h" 23 #include "build/build_config.h"
24 #include "cc/output/begin_frame_args.h" 24 #include "cc/output/begin_frame_args.h"
25 #include "cc/scheduler/begin_frame_source.h" 25 #include "cc/scheduler/begin_frame_source.h"
26 #include "content/browser/accessibility/browser_accessibility_manager.h" 26 #include "content/browser/accessibility/browser_accessibility_manager.h"
27 #include "content/browser/compositor/image_transport_factory.h" 27 #include "content/browser/compositor/image_transport_factory.h"
28 #include "content/browser/compositor/owned_mailbox.h" 28 #include "content/browser/compositor/owned_mailbox.h"
29 #include "content/browser/renderer_host/render_widget_host_view_base.h" 29 #include "content/browser/renderer_host/render_widget_host_view_base.h"
30 #include "content/browser/renderer_host/render_widget_host_view_event_handler.h" 30 #include "content/browser/renderer_host/render_widget_host_view_event_handler.h"
31 #include "content/browser/renderer_host/resize_lock.h"
32 #include "content/browser/renderer_host/text_input_manager.h" 31 #include "content/browser/renderer_host/text_input_manager.h"
33 #include "content/common/content_export.h" 32 #include "content/common/content_export.h"
34 #include "content/common/cursors/webcursor.h" 33 #include "content/common/cursors/webcursor.h"
35 #include "content/public/common/context_menu_params.h" 34 #include "content/public/common/context_menu_params.h"
36 #include "third_party/skia/include/core/SkRegion.h" 35 #include "third_party/skia/include/core/SkRegion.h"
37 #include "ui/aura/client/cursor_client_observer.h" 36 #include "ui/aura/client/cursor_client_observer.h"
38 #include "ui/aura/client/focus_change_observer.h" 37 #include "ui/aura/client/focus_change_observer.h"
39 #include "ui/aura/window_delegate.h" 38 #include "ui/aura/window_delegate.h"
40 #include "ui/aura/window_tree_host_observer.h" 39 #include "ui/aura/window_tree_host_observer.h"
41 #include "ui/base/ime/text_input_client.h" 40 #include "ui/base/ime/text_input_client.h"
(...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after
575 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_; 574 std::unique_ptr<RenderWidgetHostViewEventHandler> event_handler_;
576 575
577 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_; 576 base::WeakPtrFactory<RenderWidgetHostViewAura> weak_ptr_factory_;
578 577
579 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura); 578 DISALLOW_COPY_AND_ASSIGN(RenderWidgetHostViewAura);
580 }; 579 };
581 580
582 } // namespace content 581 } // namespace content
583 582
584 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_ 583 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_AURA_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698