| 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 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 368 is_fullscreen_(false), | 368 is_fullscreen_(false), |
| 369 popup_parent_host_view_(NULL), | 369 popup_parent_host_view_(NULL), |
| 370 popup_child_host_view_(NULL), | 370 popup_child_host_view_(NULL), |
| 371 is_loading_(false), | 371 is_loading_(false), |
| 372 text_input_type_(ui::TEXT_INPUT_TYPE_NONE), | 372 text_input_type_(ui::TEXT_INPUT_TYPE_NONE), |
| 373 text_input_mode_(ui::TEXT_INPUT_MODE_DEFAULT), | 373 text_input_mode_(ui::TEXT_INPUT_MODE_DEFAULT), |
| 374 text_input_flags_(0), | 374 text_input_flags_(0), |
| 375 can_compose_inline_(true), | 375 can_compose_inline_(true), |
| 376 has_composition_text_(false), | 376 has_composition_text_(false), |
| 377 accept_return_character_(false), | 377 accept_return_character_(false), |
| 378 last_swapped_software_frame_scale_factor_(1.f), | |
| 379 paint_canvas_(NULL), | |
| 380 synthetic_move_sent_(false), | 378 synthetic_move_sent_(false), |
| 381 cursor_visibility_state_in_renderer_(UNKNOWN), | 379 cursor_visibility_state_in_renderer_(UNKNOWN), |
| 382 #if defined(OS_WIN) | 380 #if defined(OS_WIN) |
| 383 legacy_render_widget_host_HWND_(NULL), | 381 legacy_render_widget_host_HWND_(NULL), |
| 384 legacy_window_destroyed_(false), | 382 legacy_window_destroyed_(false), |
| 385 #endif | 383 #endif |
| 386 has_snapped_to_boundary_(false), | 384 has_snapped_to_boundary_(false), |
| 387 is_guest_view_hack_(is_guest_view_hack), | 385 is_guest_view_hack_(is_guest_view_hack), |
| 388 begin_frame_observer_proxy_(this), | 386 begin_frame_observer_proxy_(this), |
| 389 set_focus_on_mouse_down_or_key_event_(false), | 387 set_focus_on_mouse_down_or_key_event_(false), |
| (...skipping 2537 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2927 | 2925 |
| 2928 //////////////////////////////////////////////////////////////////////////////// | 2926 //////////////////////////////////////////////////////////////////////////////// |
| 2929 // RenderWidgetHostViewBase, public: | 2927 // RenderWidgetHostViewBase, public: |
| 2930 | 2928 |
| 2931 // static | 2929 // static |
| 2932 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { | 2930 void RenderWidgetHostViewBase::GetDefaultScreenInfo(WebScreenInfo* results) { |
| 2933 GetScreenInfoForWindow(results, NULL); | 2931 GetScreenInfoForWindow(results, NULL); |
| 2934 } | 2932 } |
| 2935 | 2933 |
| 2936 } // namespace content | 2934 } // namespace content |
| OLD | NEW |