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

Unified Diff: content/browser/browser_main_loop.cc

Issue 8414020: Expose the sandbox related code through the content API. I did a bit of cleanup while I was doing... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 2 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: content/browser/browser_main_loop.cc
===================================================================
--- content/browser/browser_main_loop.cc (revision 107845)
+++ content/browser/browser_main_loop.cc (working copy)
@@ -149,7 +149,7 @@
BrowserMainLoop::BrowserMainLoop(const MainFunctionParams& parameters)
: parameters_(parameters),
- parsed_command_line_(parameters.command_line_),
+ parsed_command_line_(parameters.command_line),
result_code_(content::RESULT_CODE_NORMAL_EXIT) {
#if defined(OS_WIN)
OleInitialize(NULL);
@@ -332,7 +332,7 @@
#endif
#if !defined(USE_AURA)
- gfx::GtkInitFromCommandLine(parameters_.command_line_);
+ gfx::GtkInitFromCommandLine(parameters_.command_line);
#endif
SetUpGLibLogHandler();

Powered by Google App Engine
This is Rietveld 408576698