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

Unified Diff: chrome/browser/chrome_content_browser_client.h

Issue 1147213004: Store and load icudtl.dat directly from the apk rather than extracting on start-up (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@load-from-apk
Patch Set: Created 5 years, 7 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/chrome_content_browser_client.h
diff --git a/chrome/browser/chrome_content_browser_client.h b/chrome/browser/chrome_content_browser_client.h
index cd15dfdb734590b91e9f31cd54f1620e976d24af..3e20f6fe7db604e152a9ebf32978eebe468d37e0 100644
--- a/chrome/browser/chrome_content_browser_client.h
+++ b/chrome/browser/chrome_content_browser_client.h
@@ -310,6 +310,10 @@ class ChromeContentBrowserClient : public content::ContentBrowserClient {
#if defined(OS_POSIX) && !defined(OS_MACOSX)
gin::V8Initializer::V8Files v8_files_;
#endif // OS_POSIX && !OS_MACOSX
+#if defined(OS_ANDROID)
+ base::ScopedFD icudtl_fd_;
Yaron 2015/06/01 22:24:52 Please add a comment for these and mention this ch
agrieve 2015/06/02 17:24:40 Done.
+ base::MemoryMappedFile::Region icudtl_region_;
+#endif
// Vector of additional ChromeContentBrowserClientParts.
// Parts are deleted in the reverse order they are added.

Powered by Google App Engine
This is Rietveld 408576698