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

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
« no previous file with comments | « chrome/browser/renderer_host/pepper_file_message_filter.h ('k') | chrome/common/pepper_file_messages.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/pepper_file_message_filter.cc
===================================================================
--- chrome/browser/renderer_host/pepper_file_message_filter.cc (revision 69381)
+++ chrome/browser/renderer_host/pepper_file_message_filter.cc (working copy)
@@ -164,7 +164,7 @@
void PepperFileMessageFilter::OnPepperGetDirContents(
const FilePath& path,
- PepperDirContents* contents,
+ webkit::ppapi::DirContents* contents,
base::PlatformFileError* error) {
FilePath full_path = MakePepperPath(path);
if (full_path.empty()) {
@@ -184,7 +184,7 @@
while (!enumerator.Next().empty()) {
file_util::FileEnumerator::FindInfo info;
enumerator.GetFindInfo(&info);
- PepperDirEntry entry = {
+ webkit::ppapi::DirEntry entry = {
file_util::FileEnumerator::GetFilename(info),
file_util::FileEnumerator::IsDirectory(info)
};
« no previous file with comments | « chrome/browser/renderer_host/pepper_file_message_filter.h ('k') | chrome/common/pepper_file_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698