| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2008 The Native Client Authors. All rights reserved. | 2 * Copyright 2008 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can | 3 * Use of this source code is governed by a BSD-style license that can |
| 4 * be found in the LICENSE file. | 4 * be found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 | 7 |
| 8 // Portable interface for browser interaction | 8 // Portable interface for browser interaction |
| 9 | 9 |
| 10 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_BROWSER_INTERFACE_H_ | 10 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_BROWSER_INTERFACE_H_ |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 public: | 81 public: |
| 82 static uintptr_t kConnectIdent; | 82 static uintptr_t kConnectIdent; |
| 83 static uintptr_t kHeightIdent; | 83 static uintptr_t kHeightIdent; |
| 84 static uintptr_t kInvokeIdent; | 84 static uintptr_t kInvokeIdent; |
| 85 static uintptr_t kLengthIdent; | 85 static uintptr_t kLengthIdent; |
| 86 static uintptr_t kMapIdent; | 86 static uintptr_t kMapIdent; |
| 87 static uintptr_t kOnfailIdent; | 87 static uintptr_t kOnfailIdent; |
| 88 static uintptr_t kOnloadIdent; | 88 static uintptr_t kOnloadIdent; |
| 89 static uintptr_t kModuleReadyIdent; | 89 static uintptr_t kModuleReadyIdent; |
| 90 static uintptr_t kNaClMultimediaBridgeIdent; | 90 static uintptr_t kNaClMultimediaBridgeIdent; |
| 91 static uintptr_t kNexeIdent; |
| 91 static uintptr_t kNullNpapiMethodIdent; | 92 static uintptr_t kNullNpapiMethodIdent; |
| 92 static uintptr_t kPrintIdent; | 93 static uintptr_t kPrintIdent; |
| 93 static uintptr_t kReadIdent; | 94 static uintptr_t kReadIdent; |
| 94 static uintptr_t kSetCommandLogIdent; | 95 static uintptr_t kSetCommandLogIdent; |
| 95 static uintptr_t kShmFactoryIdent; | 96 static uintptr_t kShmFactoryIdent; |
| 96 static uintptr_t kSignaturesIdent; | 97 static uintptr_t kSignaturesIdent; |
| 97 static uintptr_t kSrcIdent; | |
| 98 static uintptr_t kToStringIdent; | 98 static uintptr_t kToStringIdent; |
| 99 static uintptr_t kUrlAsNaClDescIdent; | 99 static uintptr_t kUrlAsNaClDescIdent; |
| 100 static uintptr_t kValueOfIdent; | 100 static uintptr_t kValueOfIdent; |
| 101 static uintptr_t kVideoUpdateModeIdent; | 101 static uintptr_t kVideoUpdateModeIdent; |
| 102 static uintptr_t kWidthIdent; | 102 static uintptr_t kWidthIdent; |
| 103 static uintptr_t kWriteIdent; | 103 static uintptr_t kWriteIdent; |
| 104 | 104 |
| 105 static uintptr_t kLocationIdent; | 105 static uintptr_t kLocationIdent; |
| 106 static uintptr_t kHrefIdent; | 106 static uintptr_t kHrefIdent; |
| 107 private: | 107 private: |
| 108 static bool identifiers_initialized; | 108 static bool identifiers_initialized; |
| 109 static uint8_t const kInvalidAbiVersion; | 109 static uint8_t const kInvalidAbiVersion; |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_BROWSER_INTERFACE_H_ | 112 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_BROWSER_INTERFACE_H_ |
| OLD | NEW |