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 // Represents the browser side of the browser <--> renderer communication | 5 // Represents the browser side of the browser <--> renderer communication |
6 // channel. There will be one RenderProcessHost per renderer process. | 6 // channel. There will be one RenderProcessHost per renderer process. |
7 | 7 |
8 #include "content/browser/renderer_host/render_process_host_impl.h" | 8 #include "content/browser/renderer_host/render_process_host_impl.h" |
9 | 9 |
10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
(...skipping 779 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
790 switches::kEnableViewport, | 790 switches::kEnableViewport, |
791 switches::kForceDeviceScaleFactor, | 791 switches::kForceDeviceScaleFactor, |
792 switches::kFullMemoryCrashReport, | 792 switches::kFullMemoryCrashReport, |
793 #if !defined (GOOGLE_CHROME_BUILD) | 793 #if !defined (GOOGLE_CHROME_BUILD) |
794 // These are unsupported and not fully tested modes, so don't enable them | 794 // These are unsupported and not fully tested modes, so don't enable them |
795 // for official Google Chrome builds. | 795 // for official Google Chrome builds. |
796 switches::kInProcessPlugins, | 796 switches::kInProcessPlugins, |
797 #endif // GOOGLE_CHROME_BUILD | 797 #endif // GOOGLE_CHROME_BUILD |
798 switches::kInProcessWebGL, | 798 switches::kInProcessWebGL, |
799 switches::kJavaScriptFlags, | 799 switches::kJavaScriptFlags, |
| 800 switches::kLoad2xResources, |
800 switches::kLoggingLevel, | 801 switches::kLoggingLevel, |
801 switches::kOldCheckboxStyle, | 802 switches::kOldCheckboxStyle, |
802 switches::kNoReferrers, | 803 switches::kNoReferrers, |
803 switches::kNoSandbox, | 804 switches::kNoSandbox, |
804 switches::kPpapiOutOfProcess, | 805 switches::kPpapiOutOfProcess, |
805 switches::kRegisterPepperPlugins, | 806 switches::kRegisterPepperPlugins, |
806 switches::kRendererAssertTest, | 807 switches::kRendererAssertTest, |
807 #if defined(OS_POSIX) | 808 #if defined(OS_POSIX) |
808 switches::kChildCleanExit, | 809 switches::kChildCleanExit, |
809 #endif | 810 #endif |
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1510 int32 route_id, | 1511 int32 route_id, |
1511 int32 gpu_process_host_id) { | 1512 int32 gpu_process_host_id) { |
1512 TRACE_EVENT0("renderer_host", | 1513 TRACE_EVENT0("renderer_host", |
1513 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); | 1514 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); |
1514 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, | 1515 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, |
1515 gpu_process_host_id, | 1516 gpu_process_host_id, |
1516 0); | 1517 0); |
1517 } | 1518 } |
1518 | 1519 |
1519 } // namespace content | 1520 } // namespace content |
OLD | NEW |