| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 EXTENSIONS_RENDERER_API_SIGNATURE_H_ | 5 #ifndef EXTENSIONS_RENDERER_BINDINGS_API_SIGNATURE_H_ |
| 6 #define EXTENSIONS_RENDERER_API_SIGNATURE_H_ | 6 #define EXTENSIONS_RENDERER_BINDINGS_API_SIGNATURE_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "v8/include/v8.h" | 13 #include "v8/include/v8.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class Value; | 16 class Value; |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 std::vector<std::unique_ptr<ArgumentSpec>> signature_; | 70 std::vector<std::unique_ptr<ArgumentSpec>> signature_; |
| 71 | 71 |
| 72 // A developer-readable signature string, lazily set. | 72 // A developer-readable signature string, lazily set. |
| 73 mutable std::string expected_signature_; | 73 mutable std::string expected_signature_; |
| 74 | 74 |
| 75 DISALLOW_COPY_AND_ASSIGN(APISignature); | 75 DISALLOW_COPY_AND_ASSIGN(APISignature); |
| 76 }; | 76 }; |
| 77 | 77 |
| 78 } // namespace extensions | 78 } // namespace extensions |
| 79 | 79 |
| 80 #endif // EXTENSIONS_RENDERER_API_SIGNATURE_H_ | 80 #endif // EXTENSIONS_RENDERER_BINDINGS_API_SIGNATURE_H_ |
| OLD | NEW |