Home | History | Annotate | Download | only in renderer
      1 // Copyright (c) 2009 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 // Implements the window.external object.
      6 
      7 #ifndef CHROME_RENDERER_EXTERNAL_EXTENSION_H_
      8 #define CHROME_RENDERER_EXTERNAL_EXTENSION_H_
      9 
     10 namespace v8 {
     11 class Extension;
     12 }
     13 
     14 namespace extensions_v8 {
     15 
     16 class ExternalExtension {
     17  public:
     18   static v8::Extension* Get();
     19 };
     20 
     21 }  // namespace extensions_v8
     22 
     23 #endif  // CHROME_RENDERER_EXTERNAL_EXTENSION_H_
     24