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

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 12662019: Split the ProcessType enum into process types that content knows about (which will remain in src\co… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chrome_content_browser_client.cc
===================================================================
--- chrome/browser/chrome_content_browser_client.cc (revision 189692)
+++ chrome/browser/chrome_content_browser_client.cc (working copy)
@@ -83,6 +83,7 @@
#include "chrome/common/child_process_logging.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
+#include "chrome/common/chrome_process_type.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/extensions/background_info.h"
#include "chrome/common/extensions/extension.h"
@@ -1955,7 +1956,7 @@
content::BrowserPpapiHost*
ChromeContentBrowserClient::GetExternalBrowserPpapiHost(
int plugin_process_id) {
- BrowserChildProcessHostIterator iter(content::PROCESS_TYPE_NACL_LOADER);
+ BrowserChildProcessHostIterator iter(PROCESS_TYPE_NACL_LOADER);
while (!iter.Done()) {
NaClProcessHost* host = static_cast<NaClProcessHost*>(iter.GetDelegate());
if (host->process() &&

Powered by Google App Engine
This is Rietveld 408576698