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

Unified Diff: content/browser/browser_main.cc

Issue 12326078: Fix variable name. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/browser_main.cc
diff --git a/content/browser/browser_main.cc b/content/browser/browser_main.cc
index 8c22dc4afda6db7b53b1ce3c52ef5f163fac7f8c..df6a4e0e09191307682542fd44bb0b83028c588b 100644
--- a/content/browser/browser_main.cc
+++ b/content/browser/browser_main.cc
@@ -13,15 +13,15 @@ namespace content {
int BrowserMain(const MainFunctionParams& parameters) {
TRACE_EVENT_BEGIN_ETW("BrowserMain", 0, "");
- scoped_ptr<BrowserMainRunner> main_runner_(BrowserMainRunner::Create());
+ scoped_ptr<BrowserMainRunner> main_runner(BrowserMainRunner::Create());
- int exit_code = main_runner_->Initialize(parameters);
+ int exit_code = main_runner->Initialize(parameters);
if (exit_code >= 0)
return exit_code;
- exit_code = main_runner_->Run();
+ exit_code = main_runner->Run();
- main_runner_->Shutdown();
+ main_runner->Shutdown();
TRACE_EVENT_END_ETW("BrowserMain", 0, 0);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698