Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #include <algorithm> | 10 #include <algorithm> |
| (...skipping 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1412 switches::kEnableSlimmingPaintV2, | 1412 switches::kEnableSlimmingPaintV2, |
| 1413 switches::kEnableSmoothScrolling, | 1413 switches::kEnableSmoothScrolling, |
| 1414 switches::kEnableStatsTable, | 1414 switches::kEnableStatsTable, |
| 1415 switches::kEnableThreadedCompositing, | 1415 switches::kEnableThreadedCompositing, |
| 1416 switches::kEnableTouchDragDrop, | 1416 switches::kEnableTouchDragDrop, |
| 1417 switches::kEnableUnsafeES3APIs, | 1417 switches::kEnableUnsafeES3APIs, |
| 1418 switches::kEnableUseZoomForDSF, | 1418 switches::kEnableUseZoomForDSF, |
| 1419 switches::kEnableViewport, | 1419 switches::kEnableViewport, |
| 1420 switches::kEnableVtune, | 1420 switches::kEnableVtune, |
| 1421 switches::kEnableWebBluetooth, | 1421 switches::kEnableWebBluetooth, |
| 1422 switches::kEnableWebFontsInterventionTrigger, | |
|
Kunihiko Sakamoto
2016/05/18 08:39:51
Is this necessary to show the console message?
Takashi Toyoshima
2016/05/18 09:06:56
Yes for manual testing.
Actually, this was a bug t
Kunihiko Sakamoto
2016/05/18 09:11:01
I see. No need to split this, but please mention t
| |
| 1422 switches::kEnableWebGLDraftExtensions, | 1423 switches::kEnableWebGLDraftExtensions, |
| 1423 switches::kEnableWebGLImageChromium, | 1424 switches::kEnableWebGLImageChromium, |
| 1424 switches::kEnableWebVR, | 1425 switches::kEnableWebVR, |
| 1425 switches::kEnableWheelGestures, | 1426 switches::kEnableWheelGestures, |
| 1426 switches::kExplicitlyAllowedPorts, | 1427 switches::kExplicitlyAllowedPorts, |
| 1427 switches::kForceDeviceScaleFactor, | 1428 switches::kForceDeviceScaleFactor, |
| 1428 switches::kForceDisplayList2dCanvas, | 1429 switches::kForceDisplayList2dCanvas, |
| 1429 switches::kForceOverlayFullscreenVideo, | 1430 switches::kForceOverlayFullscreenVideo, |
| 1430 switches::kFullMemoryCrashReport, | 1431 switches::kFullMemoryCrashReport, |
| 1431 switches::kInertVisualViewport, | 1432 switches::kInertVisualViewport, |
| (...skipping 1336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2768 | 2769 |
| 2769 // Skip widgets in other processes. | 2770 // Skip widgets in other processes. |
| 2770 if (rvh->GetProcess()->GetID() != GetID()) | 2771 if (rvh->GetProcess()->GetID() != GetID()) |
| 2771 continue; | 2772 continue; |
| 2772 | 2773 |
| 2773 rvh->OnWebkitPreferencesChanged(); | 2774 rvh->OnWebkitPreferencesChanged(); |
| 2774 } | 2775 } |
| 2775 } | 2776 } |
| 2776 | 2777 |
| 2777 } // namespace content | 2778 } // namespace content |
| OLD | NEW |