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

Side by Side Diff: chrome/browser/renderer_host/browser_render_process_host.cc

Issue 6646025: Deleted WebPluginDelegatePepper. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_renderer.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "chrome/browser/renderer_host/browser_render_process_host.h" 8 #include "chrome/browser/renderer_host/browser_render_process_host.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 switches::kEnableWebAudio, 716 switches::kEnableWebAudio,
717 switches::kEnableJavaScriptI18NAPI, 717 switches::kEnableJavaScriptI18NAPI,
718 switches::kExperimentalSpellcheckerFeatures, 718 switches::kExperimentalSpellcheckerFeatures,
719 switches::kFullMemoryCrashReport, 719 switches::kFullMemoryCrashReport,
720 #if !defined (GOOGLE_CHROME_BUILD) 720 #if !defined (GOOGLE_CHROME_BUILD)
721 // These are unsupported and not fully tested modes, so don't enable them 721 // These are unsupported and not fully tested modes, so don't enable them
722 // for official Google Chrome builds. 722 // for official Google Chrome builds.
723 switches::kInProcessPlugins, 723 switches::kInProcessPlugins,
724 #endif // GOOGLE_CHROME_BUILD 724 #endif // GOOGLE_CHROME_BUILD
725 switches::kInProcessWebGL, 725 switches::kInProcessWebGL,
726 switches::kInternalPepper,
727 switches::kJavaScriptFlags, 726 switches::kJavaScriptFlags,
728 switches::kLoggingLevel, 727 switches::kLoggingLevel,
729 switches::kMemoryProfiling, 728 switches::kMemoryProfiling,
730 switches::kMessageLoopHistogrammer, 729 switches::kMessageLoopHistogrammer,
731 switches::kNoJsRandomness, 730 switches::kNoJsRandomness,
732 switches::kNoReferrers, 731 switches::kNoReferrers,
733 switches::kNoSandbox, 732 switches::kNoSandbox,
734 switches::kPlaybackMode, 733 switches::kPlaybackMode,
735 switches::kPpapiFlashPath, 734 switches::kPpapiFlashPath,
736 switches::kPpapiFlashVersion, 735 switches::kPpapiFlashVersion,
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
1295 IPC::PlatformFileForTransit file; 1294 IPC::PlatformFileForTransit file;
1296 #if defined(OS_POSIX) 1295 #if defined(OS_POSIX)
1297 file = base::FileDescriptor(model_file, false); 1296 file = base::FileDescriptor(model_file, false);
1298 #elif defined(OS_WIN) 1297 #elif defined(OS_WIN)
1299 ::DuplicateHandle(::GetCurrentProcess(), model_file, GetHandle(), &file, 0, 1298 ::DuplicateHandle(::GetCurrentProcess(), model_file, GetHandle(), &file, 0,
1300 false, DUPLICATE_SAME_ACCESS); 1299 false, DUPLICATE_SAME_ACCESS);
1301 #endif 1300 #endif
1302 Send(new ViewMsg_SetPhishingModel(file)); 1301 Send(new ViewMsg_SetPhishingModel(file));
1303 } 1302 }
1304 } 1303 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698