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

Unified Diff: android_webview/native/aw_contents.cc

Issue 12211108: Rename FilePath -> base::FilePath in various toplevel directories (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « android_webview/browser/aw_download_manager_delegate.cc ('k') | ash/system/drive/tray_drive.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_contents.cc
diff --git a/android_webview/native/aw_contents.cc b/android_webview/native/aw_contents.cc
index a0438a31d714525a6d7f573ffb22b04e4d3edef4..1fd2ec1d5857d77975ffa0ed45c5f4334d35f44b 100644
--- a/android_webview/native/aw_contents.cc
+++ b/android_webview/native/aw_contents.cc
@@ -584,7 +584,7 @@ void AwContents::DocumentHasImages(JNIEnv* env, jobject obj, jobject message) {
namespace {
void GenerateMHTMLCallback(ScopedJavaGlobalRef<jobject>* callback,
- const FilePath& path, int64 size) {
+ const base::FilePath& path, int64 size) {
JNIEnv* env = AttachCurrentThread();
// Android files are UTF8, so the path conversion below is safe.
Java_AwContents_generateMHTMLCallback(
@@ -599,7 +599,7 @@ void AwContents::GenerateMHTML(JNIEnv* env, jobject obj,
ScopedJavaGlobalRef<jobject>* j_callback = new ScopedJavaGlobalRef<jobject>();
j_callback->Reset(env, callback);
web_contents_->GenerateMHTML(
- FilePath(ConvertJavaStringToUTF8(env, jpath)),
+ base::FilePath(ConvertJavaStringToUTF8(env, jpath)),
base::Bind(&GenerateMHTMLCallback, base::Owned(j_callback)));
}
« no previous file with comments | « android_webview/browser/aw_download_manager_delegate.cc ('k') | ash/system/drive/tray_drive.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698