| 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 11 matching lines...) Expand all Loading... |
| 22 #include "base/metrics/field_trial.h" | 22 #include "base/metrics/field_trial.h" |
| 23 #include "base/metrics/histogram_macros.h" | 23 #include "base/metrics/histogram_macros.h" |
| 24 #include "base/single_thread_task_runner.h" | 24 #include "base/single_thread_task_runner.h" |
| 25 #include "base/strings/string_number_conversions.h" | 25 #include "base/strings/string_number_conversions.h" |
| 26 #include "base/strings/utf_string_conversions.h" | 26 #include "base/strings/utf_string_conversions.h" |
| 27 #include "base/threading/thread_task_runner_handle.h" | 27 #include "base/threading/thread_task_runner_handle.h" |
| 28 #include "base/trace_event/trace_event.h" | 28 #include "base/trace_event/trace_event.h" |
| 29 #include "build/build_config.h" | 29 #include "build/build_config.h" |
| 30 #include "cc/base/switches.h" | 30 #include "cc/base/switches.h" |
| 31 #include "cc/output/compositor_frame.h" | 31 #include "cc/output/compositor_frame.h" |
| 32 #include "content/browser/accessibility/accessibility_mode_helper.h" | |
| 33 #include "content/browser/accessibility/browser_accessibility_state_impl.h" | 32 #include "content/browser/accessibility/browser_accessibility_state_impl.h" |
| 34 #include "content/browser/bad_message.h" | 33 #include "content/browser/bad_message.h" |
| 35 #include "content/browser/browser_plugin/browser_plugin_guest.h" | 34 #include "content/browser/browser_plugin/browser_plugin_guest.h" |
| 36 #include "content/browser/child_process_security_policy_impl.h" | 35 #include "content/browser/child_process_security_policy_impl.h" |
| 37 #include "content/browser/gpu/compositor_util.h" | 36 #include "content/browser/gpu/compositor_util.h" |
| 38 #include "content/browser/renderer_host/dip_util.h" | 37 #include "content/browser/renderer_host/dip_util.h" |
| 39 #include "content/browser/renderer_host/frame_metadata_util.h" | 38 #include "content/browser/renderer_host/frame_metadata_util.h" |
| 40 #include "content/browser/renderer_host/input/input_router_config_helper.h" | 39 #include "content/browser/renderer_host/input/input_router_config_helper.h" |
| 41 #include "content/browser/renderer_host/input/input_router_impl.h" | 40 #include "content/browser/renderer_host/input/input_router_impl.h" |
| 42 #include "content/browser/renderer_host/input/synthetic_gesture.h" | 41 #include "content/browser/renderer_host/input/synthetic_gesture.h" |
| (...skipping 2455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2498 // Note: We are using the origin URL provided by the sender here. It may be | 2497 // Note: We are using the origin URL provided by the sender here. It may be |
| 2499 // different from the receiver's. | 2498 // different from the receiver's. |
| 2500 file_system_file.url = | 2499 file_system_file.url = |
| 2501 GURL(storage::GetIsolatedFileSystemRootURIString( | 2500 GURL(storage::GetIsolatedFileSystemRootURIString( |
| 2502 file_system_url.origin(), filesystem_id, std::string()) | 2501 file_system_url.origin(), filesystem_id, std::string()) |
| 2503 .append(register_name)); | 2502 .append(register_name)); |
| 2504 } | 2503 } |
| 2505 } | 2504 } |
| 2506 | 2505 |
| 2507 } // namespace content | 2506 } // namespace content |
| OLD | NEW |