Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2086363004: mac: Finish plumbing for Pepper3D Image Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp98_native_gmb
Patch Set: nits. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 1361 matching lines...) Expand 10 before | Expand all | Expand 10 after
1372 switches::kDisableGpuVsync, 1372 switches::kDisableGpuVsync,
1373 switches::kDisableLowResTiling, 1373 switches::kDisableLowResTiling,
1374 switches::kDisableHistogramCustomizer, 1374 switches::kDisableHistogramCustomizer,
1375 switches::kDisableIconNtp, 1375 switches::kDisableIconNtp,
1376 switches::kDisableLCDText, 1376 switches::kDisableLCDText,
1377 switches::kDisableLocalStorage, 1377 switches::kDisableLocalStorage,
1378 switches::kDisableLogging, 1378 switches::kDisableLogging,
1379 switches::kDisableMediaSuspend, 1379 switches::kDisableMediaSuspend,
1380 switches::kDisableNotifications, 1380 switches::kDisableNotifications,
1381 switches::kDisableOverlayScrollbar, 1381 switches::kDisableOverlayScrollbar,
1382 switches::kDisablePepper3DImageChromium,
1382 switches::kDisablePermissionsAPI, 1383 switches::kDisablePermissionsAPI,
1383 switches::kDisablePresentationAPI, 1384 switches::kDisablePresentationAPI,
1384 switches::kDisablePinch, 1385 switches::kDisablePinch,
1385 switches::kDisableRGBA4444Textures, 1386 switches::kDisableRGBA4444Textures,
1386 switches::kDisableRTCSmoothnessAlgorithm, 1387 switches::kDisableRTCSmoothnessAlgorithm,
1387 switches::kDisableSeccompFilterSandbox, 1388 switches::kDisableSeccompFilterSandbox,
1388 switches::kDisableSharedWorkers, 1389 switches::kDisableSharedWorkers,
1389 switches::kDisableSmoothScrolling, 1390 switches::kDisableSmoothScrolling,
1390 switches::kDisableSpeechAPI, 1391 switches::kDisableSpeechAPI,
1391 switches::kDisableThreadedCompositing, 1392 switches::kDisableThreadedCompositing,
(...skipping 1427 matching lines...) Expand 10 before | Expand all | Expand 10 after
2819 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2820 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2820 2821
2821 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2822 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2822 // enough information here so that we can determine what the bad message was. 2823 // enough information here so that we can determine what the bad message was.
2823 base::debug::Alias(&error); 2824 base::debug::Alias(&error);
2824 bad_message::ReceivedBadMessage(process.get(), 2825 bad_message::ReceivedBadMessage(process.get(),
2825 bad_message::RPH_MOJO_PROCESS_ERROR); 2826 bad_message::RPH_MOJO_PROCESS_ERROR);
2826 } 2827 }
2827 2828
2828 } // namespace content 2829 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698