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

Unified Diff: android_webview/browser/aw_browser_main_parts.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 | « no previous file | chrome/app/chrome_main_delegate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/browser/aw_browser_main_parts.cc
diff --git a/android_webview/browser/aw_browser_main_parts.cc b/android_webview/browser/aw_browser_main_parts.cc
index 459e1b5d875562e6bcd315b8358c184452c6709c..f0785f9c81460bfaebc66bfd0fdd7a3997f44c06 100644
--- a/android_webview/browser/aw_browser_main_parts.cc
+++ b/android_webview/browser/aw_browser_main_parts.cc
@@ -64,9 +64,7 @@ int AwBrowserMainParts::PreCreateThreads() {
<< " len=" << pak_len;
ui::ResourceBundle::CleanupSharedInstance();
ui::ResourceBundle::InitSharedInstanceWithPakFileRegion(
- base::File(pak_fd),
- base::MemoryMappedFile::Region(pak_off, pak_len),
- /*should_load_common_resources=*/false);
+ base::File(pak_fd), base::MemoryMappedFile::Region(pak_off, pak_len));
} else {
LOG(WARNING) << "Failed to load " << locale << ".pak from the apk too. "
"Bringing up WebView without any locale";
« no previous file with comments | « no previous file | chrome/app/chrome_main_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698