| 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_EXPERIMENTAL_APP_CUSTOM_BINDINGS_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_EXPERIMENTAL_APP_CUSTOM_BINDINGS_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "base/compiler_specific.h" |
| 10 #include "chrome/renderer/extensions/chrome_v8_extension.h" |
| 11 |
| 12 namespace extensions { |
| 13 |
| 14 // Custom bindings for the nativeFileSystem API. |
| 15 class ExperimentalAppCustomBindings : public ChromeV8Extension { |
| 16 public: |
| 17 ExperimentalAppCustomBindings(); |
| 18 |
| 19 private: |
| 20 DISALLOW_COPY_AND_ASSIGN(ExperimentalAppCustomBindings); |
| 21 }; |
| 22 |
| 23 } // namespace extensions |
| 24 |
| 25 #endif // CHROME_RENDERER_EXTENSIONS_EXPERIMENTAL_APP_CUSTOM_BINDINGS_H_ |
| OLD | NEW |