| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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_CUSTOM_BINDINGS_UTIL_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_CUSTOM_BINDINGS_UTIL_H_ |
| 6 #define CHROME_RENDERER_EXTENSIONS_CUSTOM_BINDINGS_UTIL_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_CUSTOM_BINDINGS_UTIL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 // to run in. | 35 // to run in. |
| 36 bool AllowAPIInjection(const std::string& api_name, | 36 bool AllowAPIInjection(const std::string& api_name, |
| 37 const Extension& extension, | 37 const Extension& extension, |
| 38 ExtensionDispatcher* extension_dispatcher); | 38 ExtensionDispatcher* extension_dispatcher); |
| 39 | 39 |
| 40 } // namespace custom_bindings_util | 40 } // namespace custom_bindings_util |
| 41 | 41 |
| 42 } // namespace extensions | 42 } // namespace extensions |
| 43 | 43 |
| 44 #endif // CHROME_RENDERER_EXTENSIONS_CUSTOM_BINDINGS_UTIL_H_ | 44 #endif // CHROME_RENDERER_EXTENSIONS_CUSTOM_BINDINGS_UTIL_H_ |
| OLD | NEW |