| OLD | NEW |
| 1 // Copyright 2014 The Chromium OS Authors. All rights reserved. | 1 // Copyright 2014 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 REQUEST_H_ | 5 #ifndef REQUEST_H_ |
| 6 #define REQUEST_H_ | 6 #define REQUEST_H_ |
| 7 | 7 |
| 8 #include "ppapi/cpp/var_array_buffer.h" | 8 #include "ppapi/cpp/var_array_buffer.h" |
| 9 #include "ppapi/cpp/var_dictionary.h" | 9 #include "ppapi/cpp/var_dictionary.h" |
| 10 | 10 |
| 11 // Defines the protocol messsage used to communicate between JS and NaCL. | 11 // Defines the protocol messsage used to communicate between JS and NaCL. |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 const std::string& error); | 165 const std::string& error); |
| 166 | 166 |
| 167 // Obtains a int64_t from a string value inside dictionary based on a | 167 // Obtains a int64_t from a string value inside dictionary based on a |
| 168 // request::Key. | 168 // request::Key. |
| 169 int64_t GetInt64FromString(const pp::VarDictionary& dictionary, | 169 int64_t GetInt64FromString(const pp::VarDictionary& dictionary, |
| 170 const std::string& request_key); | 170 const std::string& request_key); |
| 171 | 171 |
| 172 } // namespace request | 172 } // namespace request |
| 173 | 173 |
| 174 #endif // REQUEST_H_ | 174 #endif // REQUEST_H_ |
| OLD | NEW |