OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_RENDERER_BROWSER_PLUGIN_CHROME_BROWSER_PLUGIN_DELEGATE_H_ |
| 6 #define CHROME_RENDERER_BROWSER_PLUGIN_CHROME_BROWSER_PLUGIN_DELEGATE_H_ |
| 7 |
| 8 #include "content/public/renderer/browser_plugin_delegate.h" |
| 9 |
| 10 #include "content/public/renderer/render_view_observer.h" |
| 11 #include "ipc/ipc_listener.h" |
| 12 |
| 13 class ChromeBrowserPluginDelegate : public content::BrowserPluginDelegate, |
| 14 public content::RenderViewObserver { |
| 15 public: |
| 16 ChromeBrowserPluginDelegate(int routing_id, |
| 17 int element_id, |
| 18 const std::string& mime_type); |
| 19 virtual ~ChromeBrowserPluginDelegate(); |
| 20 |
| 21 // BrowserPluginDelegate implementation. |
| 22 virtual void DidFinishLoading(const std::string& html_string) OVERRIDE; |
| 23 |
| 24 // RenderViewObserver. |
| 25 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
| 26 |
| 27 private: |
| 28 void OnCreateMimeHandlerViewGuestACK(int browser_plugin_delegate, |
| 29 int guest_instance_id); |
| 30 |
| 31 const int routing_id_; |
| 32 const int element_id_; |
| 33 const std::string mime_type_; |
| 34 |
| 35 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserPluginDelegate); |
| 36 }; |
| 37 |
| 38 #endif // CHROME_RENDERER_BROWSER_PLUGIN_CHROME_BROWSER_PLUGIN_DELEGATE_H_ |
OLD | NEW |