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

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: Rebase error. 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 1374 matching lines...) Expand 10 before | Expand all | Expand 10 after
1385 switches::kDisableGpuVsync, 1385 switches::kDisableGpuVsync,
1386 switches::kDisableLowResTiling, 1386 switches::kDisableLowResTiling,
1387 switches::kDisableHistogramCustomizer, 1387 switches::kDisableHistogramCustomizer,
1388 switches::kDisableIconNtp, 1388 switches::kDisableIconNtp,
1389 switches::kDisableLCDText, 1389 switches::kDisableLCDText,
1390 switches::kDisableLocalStorage, 1390 switches::kDisableLocalStorage,
1391 switches::kDisableLogging, 1391 switches::kDisableLogging,
1392 switches::kDisableMediaSuspend, 1392 switches::kDisableMediaSuspend,
1393 switches::kDisableNotifications, 1393 switches::kDisableNotifications,
1394 switches::kDisableOverlayScrollbar, 1394 switches::kDisableOverlayScrollbar,
1395 switches::kDisablePepper3DImageChromium,
1395 switches::kDisablePermissionsAPI, 1396 switches::kDisablePermissionsAPI,
1396 switches::kDisablePresentationAPI, 1397 switches::kDisablePresentationAPI,
1397 switches::kDisablePinch, 1398 switches::kDisablePinch,
1398 switches::kDisableRGBA4444Textures, 1399 switches::kDisableRGBA4444Textures,
1399 switches::kDisableRTCSmoothnessAlgorithm, 1400 switches::kDisableRTCSmoothnessAlgorithm,
1400 switches::kDisableSeccompFilterSandbox, 1401 switches::kDisableSeccompFilterSandbox,
1401 switches::kDisableSharedWorkers, 1402 switches::kDisableSharedWorkers,
1402 switches::kDisableSmoothScrolling, 1403 switches::kDisableSmoothScrolling,
1403 switches::kDisableSpeechAPI, 1404 switches::kDisableSpeechAPI,
1404 switches::kDisableThreadedCompositing, 1405 switches::kDisableThreadedCompositing,
(...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after
2830 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2831 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2831 2832
2832 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2833 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2833 // enough information here so that we can determine what the bad message was. 2834 // enough information here so that we can determine what the bad message was.
2834 base::debug::Alias(&error); 2835 base::debug::Alias(&error);
2835 bad_message::ReceivedBadMessage(process.get(), 2836 bad_message::ReceivedBadMessage(process.get(),
2836 bad_message::RPH_MOJO_PROCESS_ERROR); 2837 bad_message::RPH_MOJO_PROCESS_ERROR);
2837 } 2838 }
2838 2839
2839 } // namespace content 2840 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698