| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_RENDERER_EXTENSIONS_EVENT_BINDINGS_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_EVENT_BINDINGS_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_EVENT_BINDINGS_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_EVENT_BINDINGS_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 class ExtensionDispatcher; | 9 class ExtensionDispatcher; |
| 10 | 10 |
| 11 namespace content { | |
| 12 class RenderThread; | |
| 13 } | |
| 14 | |
| 15 namespace v8 { | 11 namespace v8 { |
| 16 class Extension; | 12 class Extension; |
| 17 } | 13 } |
| 18 | 14 |
| 19 // This class deals with the javascript bindings related to Event objects. | 15 // This class deals with the javascript bindings related to Event objects. |
| 20 class EventBindings { | 16 class EventBindings { |
| 21 public: | 17 public: |
| 22 static v8::Extension* Get(ExtensionDispatcher* dispatcher); | 18 static v8::Extension* Get(ExtensionDispatcher* dispatcher); |
| 23 }; | 19 }; |
| 24 | 20 |
| 25 #endif // CHROME_RENDERER_EXTENSIONS_EVENT_BINDINGS_H_ | 21 #endif // CHROME_RENDERER_EXTENSIONS_EVENT_BINDINGS_H_ |
| OLD | NEW |