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

Side by Side Diff: content/public/renderer/browser_plugin_delegate.h

Issue 376033002: Adding MimeHandlerView. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pending-zork-patch2
Patch Set: With the new attach approach Created 6 years, 3 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 unified diff | Download patch
OLDNEW
(Empty)
1 #ifndef CONTENT_PUBLIC_RENDERER_BROWSER_PLUGIN_DELEGATE_H_
2 #define CONTENT_PUBLIC_RENDERER_BROWSER_PLUGIN_DELEGATE_H_
3
4 #include <string>
5
6 #include "content/common/content_export.h"
7
8 namespace content {
9
10 // Maybe BrowserPluginLoadObserver?
11 class CONTENT_EXPORT BrowserPluginDelegate {
12 public:
13 BrowserPluginDelegate(int routing_id,
14 int browser_plugin_element_id,
15 const std::string& mime_type) {}
16 virtual ~BrowserPluginDelegate() {}
17
18 virtual void DidFinishLoading(const std::string& html_string) = 0;
19
20 private:
21 };
22
23 } // namespace content
24
25 #endif // CONTENT_PUBLIC_RENDERER_BROWSER_PLUGIN_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698