Chromium Code Reviews| 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 29 matching lines...) Expand all Loading... | |
| 40 void SetUp() override; | 40 void SetUp() override; |
| 41 void TearDown() override; | 41 void TearDown() override; |
| 42 void OnWillDisposeContext(v8::Local<v8::Context> context) override; | 42 void OnWillDisposeContext(v8::Local<v8::Context> context) override; |
| 43 | 43 |
| 44 // Returns the collection of fake APIs to be used in the test, allowing | 44 // Returns the collection of fake APIs to be used in the test, allowing |
| 45 // subclasses to return their own specifications. | 45 // subclasses to return their own specifications. |
| 46 virtual std::vector<FakeSpec> GetAPIs(); | 46 virtual std::vector<FakeSpec> GetAPIs(); |
| 47 | 47 |
| 48 // Returns the object to be used as the parent for the `lastError`. The | 48 // Returns the object to be used as the parent for the `lastError`. The |
| 49 // default returns an empty JS object (assumes no last errors will be set). | 49 // default returns an empty JS object (assumes no last errors will be set). |
| 50 virtual v8::Local<v8::Object> GetLastErrorParent( | 50 virtual v8::Local<v8::Object> GetLastErrorParent( |
|
lazyboy
2017/06/27 17:58:44
Update documentation.
Devlin
2017/06/28 17:52:01
Done.
| |
| 51 v8::Local<v8::Context> context); | 51 v8::Local<v8::Context> context, |
| 52 v8::Local<v8::Object>* secondary_parent); | |
| 52 | 53 |
| 53 // Returns the DictionaryValue representing the schema with the given API | 54 // Returns the DictionaryValue representing the schema with the given API |
| 54 // name. | 55 // name. |
| 55 const base::DictionaryValue& GetAPISchema(const std::string& api_name); | 56 const base::DictionaryValue& GetAPISchema(const std::string& api_name); |
| 56 | 57 |
| 57 // Callback for event listeners changing. | 58 // Callback for event listeners changing. |
| 58 void OnEventListenersChanged(const std::string& event_name, | 59 void OnEventListenersChanged(const std::string& event_name, |
| 59 binding::EventListenersChanged changed, | 60 binding::EventListenersChanged changed, |
| 60 const base::DictionaryValue* filter, | 61 const base::DictionaryValue* filter, |
| 61 bool was_manual, | 62 bool was_manual, |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 95 // The last request to be received from the APIBindingsSystem, or null if | 96 // The last request to be received from the APIBindingsSystem, or null if |
| 96 // there is none. | 97 // there is none. |
| 97 std::unique_ptr<APIRequestHandler::Request> last_request_; | 98 std::unique_ptr<APIRequestHandler::Request> last_request_; |
| 98 | 99 |
| 99 DISALLOW_COPY_AND_ASSIGN(APIBindingsSystemTest); | 100 DISALLOW_COPY_AND_ASSIGN(APIBindingsSystemTest); |
| 100 }; | 101 }; |
| 101 | 102 |
| 102 } // namespace extensions | 103 } // namespace extensions |
| 103 | 104 |
| 104 #endif // EXTENSIONS_RENDERER_API_BINDINGS_SYSTEM_UNITTEST_H_ | 105 #endif // EXTENSIONS_RENDERER_API_BINDINGS_SYSTEM_UNITTEST_H_ |
| OLD | NEW |