| OLD | NEW |
| (Empty) |
| 1 // Copyright 2013 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 // A v8 extension to expose Chrome account management functions. | |
| 6 | |
| 7 #ifndef CHROME_RENDERER_PRINCIPALS_EXTENSION_BINDINGS_H_ | |
| 8 #define CHROME_RENDERER_PRINCIPALS_EXTENSION_BINDINGS_H_ | |
| 9 | |
| 10 namespace v8 { | |
| 11 class Extension; | |
| 12 } | |
| 13 | |
| 14 namespace extensions_v8 { | |
| 15 | |
| 16 class PrincipalsExtension { | |
| 17 public: | |
| 18 static v8::Extension* Get(); | |
| 19 }; | |
| 20 | |
| 21 } // namespace extensions_v8 | |
| 22 | |
| 23 #endif // CHROME_RENDERER_PRINCIPALS_EXTENSION_BINDINGS_H_ | |
| OLD | NEW |