| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_ | 5 #ifndef WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_ |
| 6 #define WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_ | 6 #define WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_ |
| 7 | 7 |
| 8 #include "base/gfx/native_widget_types.h" | 8 #include "app/gfx/native_widget_types.h" |
| 9 | 9 |
| 10 class GURL; | 10 class GURL; |
| 11 | 11 |
| 12 namespace webkit_glue { | 12 namespace webkit_glue { |
| 13 | 13 |
| 14 class WebPluginDelegate; | 14 class WebPluginDelegate; |
| 15 struct WebPluginGeometry; | 15 struct WebPluginGeometry; |
| 16 | 16 |
| 17 // Used by the WebPlugin to communicate back to the containing page. | 17 // Used by the WebPlugin to communicate back to the containing page. |
| 18 class WebPluginPageDelegate { | 18 class WebPluginPageDelegate { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 virtual void ShowModalHTMLDialogForPlugin( | 53 virtual void ShowModalHTMLDialogForPlugin( |
| 54 const GURL& url, | 54 const GURL& url, |
| 55 const gfx::Size& size, | 55 const gfx::Size& size, |
| 56 const std::string& json_arguments, | 56 const std::string& json_arguments, |
| 57 std::string* json_retval) = 0; | 57 std::string* json_retval) = 0; |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 } // namespace webkit_glue | 60 } // namespace webkit_glue |
| 61 | 61 |
| 62 #endif // WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_H_ | 62 #endif // WEBKIT_GLUE_WEBPLUGIN_PAGE_DELEGATE_H_ |
| OLD | NEW |