// Copyright 2012 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_BROWSER_EXTENSIONS_MOCK_EXTENSION_SPECIAL_STORAGE_POLICY_H_ #define CHROME_BROWSER_EXTENSIONS_MOCK_EXTENSION_SPECIAL_STORAGE_POLICY_H_ #include <set> #include "chrome/browser/extensions/extension_special_storage_policy.h" #include "url/gurl.h" // This class is the same as MockSpecialStoragePolicy (in // content/public/test/mock_special_storage_policy.h), but it inherits // ExtensionSpecialStoragePolicy instead of storage::SpecialStoragePolicy. class MockExtensionSpecialStoragePolicy : public ExtensionSpecialStoragePolicy { … }; #endif // CHROME_BROWSER_EXTENSIONS_MOCK_EXTENSION_SPECIAL_STORAGE_POLICY_H_