Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_RENDERER_EXTENSIONS_API_DEFINITIONS_NATIVES_H_ | |
| 6 #define CHROME_RENDERER_EXTENSIONS_API_DEFINITIONS_NATIVES_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 #include "chrome/renderer/extensions/chrome_v8_extension.h" | |
| 10 #include "chrome/renderer/extensions/extension_dispatcher.h" | |
| 11 | |
| 12 #include "v8/include/v8.h" | |
| 13 | |
| 14 namespace extensions { | |
| 15 | |
| 16 class ApiDefinitionsNatives : public ChromeV8Extension { | |
|
not at google - send to devlin
2012/03/30 03:23:18
docs
koz (OOO until 15th September)
2012/04/03 00:15:27
Done.
| |
| 17 public: | |
| 18 explicit ApiDefinitionsNatives(ExtensionDispatcher* extension_dispatcher); | |
| 19 | |
| 20 private: | |
| 21 v8::Handle<v8::Value> GetExtensionAPIDefinition(const v8::Arguments& args); | |
|
not at google - send to devlin
2012/03/30 03:23:18
DISALLOW_etc
koz (OOO until 15th September)
2012/04/03 00:15:27
Done.
| |
| 22 }; | |
| 23 | |
| 24 } // namespace extensions | |
| 25 | |
| 26 #endif // CHROME_RENDERER_EXTENSIONS_API_DEFINITIONS_NATIVES_H_ | |
| OLD | NEW |