| 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_PLUGINS_NPAPI_WEBPLUGIN_PAGE_DELEGATE_ | 5 #ifndef WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_PAGE_DELEGATE_ |
| 6 #define WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_PAGE_DELEGATE_ | 6 #define WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_PAGE_DELEGATE_ |
| 7 | 7 |
| 8 #include "gfx/native_widget_types.h" | 8 #include "ui/gfx/native_widget_types.h" |
| 9 | 9 |
| 10 class FilePath; | 10 class FilePath; |
| 11 class GURL; | 11 class GURL; |
| 12 | 12 |
| 13 namespace WebKit { | 13 namespace WebKit { |
| 14 class WebCookieJar; | 14 class WebCookieJar; |
| 15 } | 15 } |
| 16 | 16 |
| 17 namespace webkit { | 17 namespace webkit { |
| 18 namespace npapi { | 18 namespace npapi { |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 std::string* json_retval) = 0; | 62 std::string* json_retval) = 0; |
| 63 | 63 |
| 64 // The WebCookieJar to use for this plugin. | 64 // The WebCookieJar to use for this plugin. |
| 65 virtual WebKit::WebCookieJar* GetCookieJar() = 0; | 65 virtual WebKit::WebCookieJar* GetCookieJar() = 0; |
| 66 }; | 66 }; |
| 67 | 67 |
| 68 } // namespace npapi | 68 } // namespace npapi |
| 69 } // namespace webkit | 69 } // namespace webkit |
| 70 | 70 |
| 71 #endif // WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_PAGE_DELEGATE_H_ | 71 #endif // WEBKIT_PLUGINS_NPAPI_WEBPLUGIN_PAGE_DELEGATE_H_ |
| OLD | NEW |