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

Unified Diff: chrome/browser/renderer_host/pepper_file_message_filter.cc

Issue 5828003: Move the Pepper implementation from webkit/glue/plugins/pepper_* to... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years 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/browser/renderer_host/pepper_file_message_filter.cc
===================================================================
--- chrome/browser/renderer_host/pepper_file_message_filter.cc (revision 69282)
+++ chrome/browser/renderer_host/pepper_file_message_filter.cc (working copy)
@@ -232,7 +232,7 @@
void PepperFileMessageFilter::OnPepperGetDirContents(
const FilePath& path,
- PepperDirContents* contents,
+ webkit::plugins::ppapi::DirContents* contents,
base::PlatformFileError* error) {
FilePath full_path = MakePepperPath(path);
if (full_path.empty()) {
@@ -252,7 +252,7 @@
while (!enumerator.Next().empty()) {
file_util::FileEnumerator::FindInfo info;
enumerator.GetFindInfo(&info);
- PepperDirEntry entry = {
+ webkit::plugins::ppapi::DirEntry entry = {
file_util::FileEnumerator::GetFilename(info),
file_util::FileEnumerator::IsDirectory(info)
};

Powered by Google App Engine
This is Rietveld 408576698