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

Unified Diff: webkit/glue/plugins/pepper_plugin_delegate.h

Issue 3052040: Chromium-side implemention of pepper's FileChooser. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 4 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: webkit/glue/plugins/pepper_plugin_delegate.h
===================================================================
--- webkit/glue/plugins/pepper_plugin_delegate.h (revision 54935)
+++ webkit/glue/plugins/pepper_plugin_delegate.h (working copy)
@@ -5,6 +5,8 @@
#ifndef WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_DELEGATE_H_
#define WEBKIT_GLUE_PLUGINS_PEPPER_PLUGIN_DELEGATE_H_
+#include <string>
+
#include "base/shared_memory.h"
#include "base/sync_socket.h"
#include "third_party/ppapi/c/pp_stdint.h"
@@ -15,6 +17,11 @@
class PlatformCanvas;
}
+namespace WebKit {
+class WebFileChooserCompletion;
+struct WebFileChooserParams;
+}
+
namespace pepper {
class PluginInstance;
@@ -88,6 +95,11 @@
virtual PlatformAudio* CreateAudio(uint32_t sample_rate,
uint32_t sample_count,
PlatformAudio::Client* client) = 0;
+
+ // Runs a file chooser.
+ virtual bool RunFileChooser(
+ const WebKit::WebFileChooserParams& params,
+ WebKit::WebFileChooserCompletion* chooser_completion) = 0;
};
} // namespace pepper

Powered by Google App Engine
This is Rietveld 408576698