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

Unified Diff: chrome/common/chrome_paths_android.cc

Issue 10825155: Build target for Android WebView. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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/common/chrome_paths_android.cc
diff --git a/chrome/common/chrome_paths_android.cc b/chrome/common/chrome_paths_android.cc
index bc5c924d8ca19e279493a5c0f2539060409c589a..39c66687df0d63ee046bd5fa4c78fd93bf0ccdcc 100644
--- a/chrome/common/chrome_paths_android.cc
+++ b/chrome/common/chrome_paths_android.cc
@@ -13,6 +13,7 @@ namespace chrome {
void GetUserCacheDirectory(const FilePath& profile_dir, FilePath* result) {
if (!PathService::Get(base::DIR_CACHE, result))
*result = profile_dir;
+
Jói 2012/08/02 15:20:00 This blank line looks like it was introduced accid
Torne 2012/08/03 10:31:36 Done.
}
bool GetDefaultUserDataDirectory(FilePath* result) {
@@ -43,4 +44,9 @@ bool GetUserDesktop(FilePath* result) {
return false;
}
+bool ProcessNeedsProfileDir(const std::string& process_type) {
+ // For now we have no reason to forbid this on Android.
+ return true;
+}
+
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698