| Index: chrome/browser/chromeos/network_settings/onc_test_utils.h
|
| diff --git a/chrome/browser/chromeos/network_settings/onc_test_utils.h b/chrome/browser/chromeos/network_settings/onc_test_utils.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..bca0c178327fcd28404ccb1696c4db325062551e
|
| --- /dev/null
|
| +++ b/chrome/browser/chromeos/network_settings/onc_test_utils.h
|
| @@ -0,0 +1,27 @@
|
| +// 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_CHROMEOS_NETWORK_SETTINGS_ONC_TEST_UTILS_H_
|
| +#define CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TEST_UTILS_H_
|
| +
|
| +#include <string>
|
| +
|
| +#include "base/memory/scoped_ptr.h"
|
| +
|
| +namespace base {
|
| +class DictionaryValue;
|
| +}
|
| +
|
| +namespace chromeos {
|
| +namespace onc {
|
| +namespace test_utils {
|
| +
|
| +scoped_ptr<base::DictionaryValue> ReadTestDictionary(
|
| + const std::string& filename);
|
| +
|
| +} // namespace test_utils
|
| +} // namespace onc
|
| +} // namespace chromeos
|
| +
|
| +#endif // CHROME_BROWSER_CHROMEOS_NETWORK_SETTINGS_ONC_TEST_UTILS_H_
|
|
|