// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ #define CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_ #include <memory> #include "chrome/common/extensions/permissions/chrome_permission_message_provider.h" #include "extensions/common/extensions_client.h" #include "url/gurl.h" namespace extensions { // The implementation of ExtensionsClient for Chrome, which encapsulates the // global knowledge of features, permissions, and manifest fields. class ChromeExtensionsClient : public ExtensionsClient { … }; } // namespace extensions #endif // CHROME_COMMON_EXTENSIONS_CHROME_EXTENSIONS_CLIENT_H_