| OLD | NEW |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | 1 // Copyright 2017 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_BINDINGS_SYSTEM_UNITTEST_H_ | 5 #ifndef EXTENSIONS_RENDERER_API_BINDINGS_SYSTEM_UNITTEST_H_ |
| 6 #define EXTENSIONS_RENDERER_API_BINDINGS_SYSTEM_UNITTEST_H_ | 6 #define EXTENSIONS_RENDERER_API_BINDINGS_SYSTEM_UNITTEST_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 virtual v8::Local<v8::Object> GetLastErrorParent( | 50 virtual v8::Local<v8::Object> GetLastErrorParent( |
| 51 v8::Local<v8::Context> context); | 51 v8::Local<v8::Context> context); |
| 52 | 52 |
| 53 // Returns the DictionaryValue representing the schema with the given API | 53 // Returns the DictionaryValue representing the schema with the given API |
| 54 // name. | 54 // name. |
| 55 const base::DictionaryValue& GetAPISchema(const std::string& api_name); | 55 const base::DictionaryValue& GetAPISchema(const std::string& api_name); |
| 56 | 56 |
| 57 // Callback for event listeners changing. | 57 // Callback for event listeners changing. |
| 58 void OnEventListenersChanged(const std::string& event_name, | 58 void OnEventListenersChanged(const std::string& event_name, |
| 59 binding::EventListenersChanged changed, | 59 binding::EventListenersChanged changed, |
| 60 const base::DictionaryValue* filter, |
| 60 v8::Local<v8::Context> context); | 61 v8::Local<v8::Context> context); |
| 61 | 62 |
| 62 // Callback for an API request being made. Stores the request in | 63 // Callback for an API request being made. Stores the request in |
| 63 // |last_request_|. | 64 // |last_request_|. |
| 64 void OnAPIRequest(std::unique_ptr<APIRequestHandler::Request> request, | 65 void OnAPIRequest(std::unique_ptr<APIRequestHandler::Request> request, |
| 65 v8::Local<v8::Context> context); | 66 v8::Local<v8::Context> context); |
| 66 | 67 |
| 67 // Checks that |last_request_| exists and was provided with the | 68 // Checks that |last_request_| exists and was provided with the |
| 68 // |expected_name| and |expected_arguments|. | 69 // |expected_name| and |expected_arguments|. |
| 69 void ValidateLastRequest(const std::string& expected_name, | 70 void ValidateLastRequest(const std::string& expected_name, |
| (...skipping 22 matching lines...) Expand all Loading... |
| 92 // The last request to be received from the APIBindingsSystem, or null if | 93 // The last request to be received from the APIBindingsSystem, or null if |
| 93 // there is none. | 94 // there is none. |
| 94 std::unique_ptr<APIRequestHandler::Request> last_request_; | 95 std::unique_ptr<APIRequestHandler::Request> last_request_; |
| 95 | 96 |
| 96 DISALLOW_COPY_AND_ASSIGN(APIBindingsSystemTest); | 97 DISALLOW_COPY_AND_ASSIGN(APIBindingsSystemTest); |
| 97 }; | 98 }; |
| 98 | 99 |
| 99 } // namespace extensions | 100 } // namespace extensions |
| 100 | 101 |
| 101 #endif // EXTENSIONS_RENDERER_API_BINDINGS_SYSTEM_UNITTEST_H_ | 102 #endif // EXTENSIONS_RENDERER_API_BINDINGS_SYSTEM_UNITTEST_H_ |
| OLD | NEW |