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

Unified Diff: chrome/app/chrome_main_delegate.cc

Issue 451283002: Drop the bool parameter from InitSharedInstanceWithPakFileRegion(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: REBASE Created 6 years, 4 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 | « android_webview/browser/aw_browser_main_parts.cc ('k') | content/shell/app/shell_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/app/chrome_main_delegate.cc
diff --git a/chrome/app/chrome_main_delegate.cc b/chrome/app/chrome_main_delegate.cc
index 6a0e22d2306bf12737e7ce8c6a1c170f52df7a34..0faeaf5e9310c1d5eec438f036b4c45cf7c23dee 100644
--- a/chrome/app/chrome_main_delegate.cc
+++ b/chrome/app/chrome_main_delegate.cc
@@ -720,9 +720,7 @@ void ChromeMainDelegate::PreSandboxStartup() {
kAndroidLocalePakDescriptor);
CHECK(locale_pak_fd != -1);
ResourceBundle::InitSharedInstanceWithPakFileRegion(
- base::File(locale_pak_fd),
- base::MemoryMappedFile::Region::kWholeFile,
- false);
+ base::File(locale_pak_fd), base::MemoryMappedFile::Region::kWholeFile);
int extra_pak_keys[] = {
kAndroidChrome100PercentPakDescriptor,
« no previous file with comments | « android_webview/browser/aw_browser_main_parts.cc ('k') | content/shell/app/shell_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698