Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(11)

Side by Side Diff: chromeos/network/onc/onc_test_utils.cc

Issue 555313002: Cleanup: Use base/files/file_util.h instead of base/file_util.h in ash/, athena/, and chromeos/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chromeos/network/onc/onc_test_utils.h" 5 #include "chromeos/network/onc/onc_test_utils.h"
6 6
7 #include "base/file_util.h"
8 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "base/files/file_util.h"
9 #include "base/json/json_file_value_serializer.h" 9 #include "base/json/json_file_value_serializer.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/path_service.h" 11 #include "base/path_service.h"
12 #include "base/values.h" 12 #include "base/values.h"
13 #include "chromeos/chromeos_test_utils.h" 13 #include "chromeos/chromeos_test_utils.h"
14 14
15 namespace chromeos { 15 namespace chromeos {
16 namespace onc { 16 namespace onc {
17 namespace test_utils { 17 namespace test_utils {
18 18
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 return ::testing::AssertionSuccess() << "Values are equal"; 74 return ::testing::AssertionSuccess() << "Values are equal";
75 75
76 return ::testing::AssertionFailure() << "Values are unequal.\n" 76 return ::testing::AssertionFailure() << "Values are unequal.\n"
77 << "Expected value:\n" << *expected 77 << "Expected value:\n" << *expected
78 << "Actual value:\n" << *actual; 78 << "Actual value:\n" << *actual;
79 } 79 }
80 80
81 } // namespace test_utils 81 } // namespace test_utils
82 } // namespace onc 82 } // namespace onc
83 } // namespace chromeos 83 } // namespace chromeos
OLDNEW
« no previous file with comments | « chromeos/network/network_connection_handler_unittest.cc ('k') | chromeos/process_proxy/process_output_watcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698