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

Unified Diff: content/public/browser/content_browser_client.h

Issue 1181953002: Load non-locale .pak files directly from the .apk on Android (rather than extracting on start-up). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@raw-paks
Patch Set: fix unused LoadMainAndroidPackFile 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
Index: content/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index acd568b8229eca7b029c32f74dc3576161eb8121..8765400a91aba211f16b9e220824ad3ac98b7b0a 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -622,8 +622,12 @@ class CONTENT_EXPORT ContentBrowserClient {
virtual void GetAdditionalMappedFilesForChildProcess(
const base::CommandLine& command_line,
int child_process_id,
- FileDescriptorInfo* mappings) {}
+ content::FileDescriptorInfo* mappings
+#if defined(OS_ANDROID)
jochen (gone - plz use gerrit) 2015/06/17 08:47:54 please ifdef the entire method, not just part of i
agrieve 2015/06/17 14:25:31 Done.
+ , std::map<int, base::MemoryMappedFile::Region>* regions
#endif
+ ) {};
Yaron 2015/06/17 14:12:28 remove ";"
agrieve 2015/06/17 14:35:40 Done.
+#endif // defined(OS_POSIX) && !defined(OS_MACOSX)
#if defined(OS_WIN)
// Returns the name of the dll that contains cursors and other resources.

Powered by Google App Engine
This is Rietveld 408576698