| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_PLUGIN_STREAM_URL_H_ | 5 #ifndef WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_URL_H_ |
| 6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_URL_H_ | 6 #define WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_URL_H_ |
| 7 | 7 |
| 8 #include "url/gurl.h" |
| 8 #include "webkit/plugins/npapi/plugin_stream.h" | 9 #include "webkit/plugins/npapi/plugin_stream.h" |
| 9 #include "webkit/plugins/npapi/webplugin.h" | 10 #include "webkit/plugins/npapi/webplugin.h" |
| 10 #include "googleurl/src/gurl.h" | |
| 11 | 11 |
| 12 namespace webkit { | 12 namespace webkit { |
| 13 namespace npapi { | 13 namespace npapi { |
| 14 | 14 |
| 15 class PluginInstance; | 15 class PluginInstance; |
| 16 | 16 |
| 17 // A NPAPI Stream based on a URL. | 17 // A NPAPI Stream based on a URL. |
| 18 class PluginStreamUrl : public PluginStream, | 18 class PluginStreamUrl : public PluginStream, |
| 19 public WebPluginResourceClient { | 19 public WebPluginResourceClient { |
| 20 public: | 20 public: |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 GURL url_; | 57 GURL url_; |
| 58 unsigned long id_; | 58 unsigned long id_; |
| 59 | 59 |
| 60 DISALLOW_COPY_AND_ASSIGN(PluginStreamUrl); | 60 DISALLOW_COPY_AND_ASSIGN(PluginStreamUrl); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 } // namespace npapi | 63 } // namespace npapi |
| 64 } // namespace webkit | 64 } // namespace webkit |
| 65 | 65 |
| 66 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_URL_H_ | 66 #endif // WEBKIT_PLUGINS_NPAPI_PLUGIN_STREAM_URL_H_ |
| OLD | NEW |