Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / value_store / testing_value_store_unittest.cc
blob6a47a3a1bdc275ad90ffbdb2fba5a1201b761e14
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.
5 #include "chrome/browser/value_store/value_store_unittest.h"
7 #include "chrome/browser/value_store/testing_value_store.h"
9 namespace extensions {
11 namespace {
13 ValueStore* Param(const base::FilePath& file_path) {
14 return new TestingValueStore();
17 } // namespace
19 INSTANTIATE_TEST_CASE_P(
20 TestingValueStore,
21 ValueStoreTest,
22 testing::Values(&Param));
24 } // namespace extensions