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 #include "content/browser/renderer_host/render_widget_host_view_aura.h" | 5 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "base/auto_reset.h" | 10 #include "base/auto_reset.h" |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
365 window_(nullptr), | 365 window_(nullptr), |
366 delegated_frame_host_(new DelegatedFrameHost(this)), | 366 delegated_frame_host_(new DelegatedFrameHost(this)), |
367 in_shutdown_(false), | 367 in_shutdown_(false), |
368 in_bounds_changed_(false), | 368 in_bounds_changed_(false), |
369 is_fullscreen_(false), | 369 is_fullscreen_(false), |
370 popup_parent_host_view_(NULL), | 370 popup_parent_host_view_(NULL), |
371 popup_child_host_view_(NULL), | 371 popup_child_host_view_(NULL), |
372 is_loading_(false), | 372 is_loading_(false), |
373 has_composition_text_(false), | 373 has_composition_text_(false), |
374 accept_return_character_(false), | 374 accept_return_character_(false), |
375 last_swapped_software_frame_scale_factor_(1.f), | |
376 paint_canvas_(NULL), | |
377 synthetic_move_sent_(false), | 375 synthetic_move_sent_(false), |
378 cursor_visibility_state_in_renderer_(UNKNOWN), | 376 cursor_visibility_state_in_renderer_(UNKNOWN), |
379 #if defined(OS_WIN) | 377 #if defined(OS_WIN) |
380 legacy_render_widget_host_HWND_(NULL), | 378 legacy_render_widget_host_HWND_(NULL), |
381 legacy_window_destroyed_(false), | 379 legacy_window_destroyed_(false), |
382 #endif | 380 #endif |
383 has_snapped_to_boundary_(false), | 381 has_snapped_to_boundary_(false), |
384 is_guest_view_hack_(is_guest_view_hack), | 382 is_guest_view_hack_(is_guest_view_hack), |
385 begin_frame_observer_proxy_(this), | 383 begin_frame_observer_proxy_(this), |
386 set_focus_on_mouse_down_or_key_event_(false), | 384 set_focus_on_mouse_down_or_key_event_(false), |
(...skipping 2546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2933 | 2931 |
2934 //////////////////////////////////////////////////////////////////////////////// | 2932 //////////////////////////////////////////////////////////////////////////////// |
2935 // RenderWidgetHostViewBase, public: | 2933 // RenderWidgetHostViewBase, public: |
2936 | 2934 |
2937 // static | 2935 // static |
2938 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 2936 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
2939 GetScreenInfoForWindow(results, NULL); | 2937 GetScreenInfoForWindow(results, NULL); |
2940 } | 2938 } |
2941 | 2939 |
2942 } // namespace content | 2940 } // namespace content |
OLD | NEW |