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

Unified Diff: base/android/build_info.h

Issue 1187433006: Load language .pak files directly from the apk when using splits (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@locale-res-or-file
Patch Set: Fix ui_base_unittest failure (allow locale paks to be loaded multiple times) Created 5 years, 6 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 | base/android/build_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/build_info.h
diff --git a/base/android/build_info.h b/base/android/build_info.h
index 093b832fdf7846b028559695d52639bcd4826e92..40877fc4810a54d5f47097fd5faa463c938b8d30 100644
--- a/base/android/build_info.h
+++ b/base/android/build_info.h
@@ -96,6 +96,10 @@ class BASE_EXPORT BuildInfo {
return sdk_int_;
}
+ int has_apk_splits() const {
+ return has_apk_splits_;
+ }
+
const char* java_exception_info() const {
return java_exception_info_;
}
@@ -127,6 +131,7 @@ class BASE_EXPORT BuildInfo {
const char* const package_name_;
const char* const build_type_;
const int sdk_int_;
+ const bool has_apk_splits_;
// This is set via set_java_exception_info, not at constructor time.
const char* java_exception_info_;
« no previous file with comments | « no previous file | base/android/build_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698