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_BROWSER_EXTENSIONS_REQUIREMENTS_PROVIDER_IMPL_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_REQUIREMENTS_PROVIDER_IMPL_H_ |
| 7 #pragma once |
| 8 |
| 9 #include "chrome/common/extensions/requirements_provider.h" |
| 10 |
| 11 namespace extensions { |
| 12 |
| 13 class RequirementsProviderImpl : public RequirementsProvider { |
| 14 public: |
| 15 RequirementsProviderImpl(); |
| 16 |
| 17 virtual bool Supports(const Manifest& manifest, string16* error); |
| 18 }; |
| 19 |
| 20 } // namespace extensions |
| 21 |
| 22 #endif // CHROME_BROWSER_EXTENSIONS_REQUIREMENTS_PROVIDER_IMPL_H_ |
OLD | NEW |