| 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_DECLARATIVE_EVENT_H_ | 5 #ifndef EXTENSIONS_RENDERER_BINDINGS_DECLARATIVE_EVENT_H_ |
| 6 #define EXTENSIONS_RENDERER_DECLARATIVE_EVENT_H_ | 6 #define EXTENSIONS_RENDERER_BINDINGS_DECLARATIVE_EVENT_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "gin/wrappable.h" | 10 #include "gin/wrappable.h" |
| 11 #include "v8/include/v8.h" | 11 #include "v8/include/v8.h" |
| 12 | 12 |
| 13 namespace gin { | 13 namespace gin { |
| 14 class Arguments; | 14 class Arguments; |
| 15 } | 15 } |
| 16 | 16 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 APIRequestHandler* request_handler_; | 54 APIRequestHandler* request_handler_; |
| 55 | 55 |
| 56 const int webview_instance_id_; | 56 const int webview_instance_id_; |
| 57 | 57 |
| 58 DISALLOW_COPY_AND_ASSIGN(DeclarativeEvent); | 58 DISALLOW_COPY_AND_ASSIGN(DeclarativeEvent); |
| 59 }; | 59 }; |
| 60 | 60 |
| 61 } // namespace extensions | 61 } // namespace extensions |
| 62 | 62 |
| 63 #endif // EXTENSIONS_RENDERER_DECLARATIVE_EVENT_H_ | 63 #endif // EXTENSIONS_RENDERER_BINDINGS_DECLARATIVE_EVENT_H_ |
| OLD | NEW |