| OLD | NEW |
| 1 // -*- c++ -*- | 1 // -*- c++ -*- |
| 2 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 // Use of this source code is governed by a BSD-style license that can be | 3 // Use of this source code is governed by a BSD-style license that can be |
| 4 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 5 | 5 |
| 6 // The portable representation of an instance and root scriptable object. | 6 // The portable representation of an instance and root scriptable object. |
| 7 // The PPAPI version of the plugin instantiates a subclass of this class. | 7 // The PPAPI version of the plugin instantiates a subclass of this class. |
| 8 | 8 |
| 9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 9 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
| 10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 10 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "native_client/src/trusted/plugin/utility.h" | 28 #include "native_client/src/trusted/plugin/utility.h" |
| 29 | 29 |
| 30 #include "ppapi/cpp/private/var_private.h" | 30 #include "ppapi/cpp/private/var_private.h" |
| 31 // for pp::VarPrivate | 31 // for pp::VarPrivate |
| 32 #include "ppapi/cpp/private/instance_private.h" | 32 #include "ppapi/cpp/private/instance_private.h" |
| 33 #include "ppapi/cpp/rect.h" | 33 #include "ppapi/cpp/rect.h" |
| 34 #include "ppapi/cpp/url_loader.h" | 34 #include "ppapi/cpp/url_loader.h" |
| 35 #include "ppapi/cpp/var.h" | 35 #include "ppapi/cpp/var.h" |
| 36 | 36 |
| 37 struct NaClSrpcChannel; | 37 struct NaClSrpcChannel; |
| 38 struct NaClDesc; | |
| 39 | 38 |
| 40 namespace nacl { | 39 namespace nacl { |
| 41 class DescWrapper; | 40 class DescWrapper; |
| 42 class DescWrapperFactory; | 41 class DescWrapperFactory; |
| 43 } // namespace nacl | 42 } // namespace nacl |
| 44 | 43 |
| 45 namespace pp { | 44 namespace pp { |
| 46 class Find_Dev; | 45 class Find_Dev; |
| 47 class MouseLock; | 46 class MouseLock; |
| 48 class Printing_Dev; | 47 class Printing_Dev; |
| (...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 567 // in UpdateDownloadProgress to map a url loader back to the URL being | 566 // in UpdateDownloadProgress to map a url loader back to the URL being |
| 568 // downloaded. | 567 // downloaded. |
| 569 const FileDownloader* FindFileDownloader(PP_Resource url_loader) const; | 568 const FileDownloader* FindFileDownloader(PP_Resource url_loader) const; |
| 570 | 569 |
| 571 int64_t last_event_bytes_received_; | 570 int64_t last_event_bytes_received_; |
| 572 }; | 571 }; |
| 573 | 572 |
| 574 } // namespace plugin | 573 } // namespace plugin |
| 575 | 574 |
| 576 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ | 575 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_PLUGIN_H_ |
| OLD | NEW |