| 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_impl.h" | 5 #include "content/browser/renderer_host/render_widget_host_impl.h" |
| 6 | 6 |
| 7 #include <math.h> | 7 #include <math.h> |
| 8 | 8 |
| 9 #include <set> | 9 #include <set> |
| 10 #include <tuple> | 10 #include <tuple> |
| (...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 text_direction_updated_(false), | 266 text_direction_updated_(false), |
| 267 text_direction_(blink::WebTextDirectionLeftToRight), | 267 text_direction_(blink::WebTextDirectionLeftToRight), |
| 268 text_direction_canceled_(false), | 268 text_direction_canceled_(false), |
| 269 suppress_events_until_keydown_(false), | 269 suppress_events_until_keydown_(false), |
| 270 pending_mouse_lock_request_(false), | 270 pending_mouse_lock_request_(false), |
| 271 allow_privileged_mouse_lock_(false), | 271 allow_privileged_mouse_lock_(false), |
| 272 has_touch_handler_(false), | 272 has_touch_handler_(false), |
| 273 is_in_touchpad_gesture_scroll_(false), | 273 is_in_touchpad_gesture_scroll_(false), |
| 274 is_in_touchscreen_gesture_scroll_(false), | 274 is_in_touchscreen_gesture_scroll_(false), |
| 275 received_paint_after_load_(false), | 275 received_paint_after_load_(false), |
| 276 latency_tracker_(this), |
| 276 next_browser_snapshot_id_(1), | 277 next_browser_snapshot_id_(1), |
| 277 owned_by_render_frame_host_(false), | 278 owned_by_render_frame_host_(false), |
| 278 is_focused_(false), | 279 is_focused_(false), |
| 279 hung_renderer_delay_( | 280 hung_renderer_delay_( |
| 280 base::TimeDelta::FromMilliseconds(kHungRendererDelayMs)), | 281 base::TimeDelta::FromMilliseconds(kHungRendererDelayMs)), |
| 281 hang_monitor_reason_( | 282 hang_monitor_reason_( |
| 282 RendererUnresponsiveType::RENDERER_UNRESPONSIVE_UNKNOWN), | 283 RendererUnresponsiveType::RENDERER_UNRESPONSIVE_UNKNOWN), |
| 283 hang_monitor_event_type_(blink::WebInputEvent::Undefined), | 284 hang_monitor_event_type_(blink::WebInputEvent::Undefined), |
| 284 last_event_type_(blink::WebInputEvent::Undefined), | 285 last_event_type_(blink::WebInputEvent::Undefined), |
| 285 new_content_rendering_delay_( | 286 new_content_rendering_delay_( |
| (...skipping 2217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2503 // Note: We are using the origin URL provided by the sender here. It may be | 2504 // Note: We are using the origin URL provided by the sender here. It may be |
| 2504 // different from the receiver's. | 2505 // different from the receiver's. |
| 2505 file_system_file.url = | 2506 file_system_file.url = |
| 2506 GURL(storage::GetIsolatedFileSystemRootURIString( | 2507 GURL(storage::GetIsolatedFileSystemRootURIString( |
| 2507 file_system_url.origin(), filesystem_id, std::string()) | 2508 file_system_url.origin(), filesystem_id, std::string()) |
| 2508 .append(register_name)); | 2509 .append(register_name)); |
| 2509 } | 2510 } |
| 2510 } | 2511 } |
| 2511 | 2512 |
| 2512 } // namespace content | 2513 } // namespace content |
| OLD | NEW |