Index: chrome/browser/extensions/requirements_provider_impl.h |
diff --git a/chrome/browser/extensions/requirements_provider_impl.h b/chrome/browser/extensions/requirements_provider_impl.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..6bc1a963cb8aeda3943e4846ab468ba59939d213 |
--- /dev/null |
+++ b/chrome/browser/extensions/requirements_provider_impl.h |
@@ -0,0 +1,22 @@ |
+// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_EXTENSIONS_REQUIREMENTS_PROVIDER_IMPL_H_ |
+#define CHROME_BROWSER_EXTENSIONS_REQUIREMENTS_PROVIDER_IMPL_H_ |
+#pragma once |
+ |
+#include "chrome/common/extensions/requirements_provider.h" |
+ |
+namespace extensions { |
+ |
+class RequirementsProviderImpl : public RequirementsProvider { |
+ public: |
+ RequirementsProviderImpl(); |
+ |
+ virtual bool Supports(const Manifest& manifest, string16* error); |
+}; |
+ |
+} // namespace extensions |
+ |
+#endif // CHROME_BROWSER_EXTENSIONS_REQUIREMENTS_PROVIDER_IMPL_H_ |