summaryrefslogtreecommitdiffstats
path: root/WebKit/android/WebCoreSupport
diff options
context:
space:
mode:
Diffstat (limited to 'WebKit/android/WebCoreSupport')
-rw-r--r--WebKit/android/WebCoreSupport/FileSystemClient.h2
-rw-r--r--WebKit/android/WebCoreSupport/PlatformBridge.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/WebKit/android/WebCoreSupport/FileSystemClient.h b/WebKit/android/WebCoreSupport/FileSystemClient.h
index 8847bda..5bde18a 100644
--- a/WebKit/android/WebCoreSupport/FileSystemClient.h
+++ b/WebKit/android/WebCoreSupport/FileSystemClient.h
@@ -35,7 +35,7 @@ namespace android {
class FileSystemClient {
public:
virtual ~FileSystemClient() { }
- virtual String resolveFileNameForContentUri(const String&) = 0;
+ virtual String resolveFilePathForContentUri(const String&) = 0;
};
}
#endif
diff --git a/WebKit/android/WebCoreSupport/PlatformBridge.cpp b/WebKit/android/WebCoreSupport/PlatformBridge.cpp
index 006f529..b75cdfc 100644
--- a/WebKit/android/WebCoreSupport/PlatformBridge.cpp
+++ b/WebKit/android/WebCoreSupport/PlatformBridge.cpp
@@ -142,10 +142,10 @@ bool PlatformBridge::popupsAllowed(NPP)
return false;
}
-String PlatformBridge::resolveFileNameForContentUri(const String& contentUri)
+String PlatformBridge::resolveFilePathForContentUri(const String& contentUri)
{
FileSystemClient* client = JavaSharedClient::GetFileSystemClient();
- return client->resolveFileNameForContentUri(contentUri);
+ return client->resolveFilePathForContentUri(contentUri);
}
} // namespace WebCore