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

Unified Diff: chrome/browser/render_process_host.cc

Issue 4079: Porting refactoring changes:... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 12 years, 3 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/render_process_host.cc
===================================================================
--- chrome/browser/render_process_host.cc (revision 2544)
+++ chrome/browser/render_process_host.cc (working copy)
@@ -19,6 +19,7 @@
#include "base/logging.h"
#include "base/path_service.h"
#include "base/process_util.h"
+#include "base/rand_util.h"
#include "base/shared_event.h"
#include "base/shared_memory.h"
#include "base/string_util.h"
@@ -43,7 +44,6 @@
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/common/debug_flags.h"
-#include "chrome/common/env_util.h"
#include "chrome/common/l10n_util.h"
#include "chrome/common/logging_chrome.h"
#include "chrome/common/pref_names.h"
@@ -674,7 +674,7 @@
// Now pick a random suitable renderer, if we have any
if (!suitable_renderers.empty()) {
int suitable_count = static_cast<int>(suitable_renderers.size());
- int random_index = rand_util::RandInt(0, suitable_count - 1);
+ int random_index = base::RandInt(0, suitable_count - 1);
return suitable_renderers[random_index];
}

Powered by Google App Engine
This is Rietveld 408576698