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

Side by Side Diff: components/wifi_sync/wifi_config_delegate_chromeos_unittest.cc

Issue 1549993003: Switch to standard integer types in components/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "components/wifi_sync/wifi_config_delegate_chromeos.h" 5 #include "components/wifi_sync/wifi_config_delegate_chromeos.h"
6 6
7 #include <stddef.h>
8
7 #include "base/logging.h" 9 #include "base/logging.h"
8 #include "base/macros.h" 10 #include "base/macros.h"
9 #include "base/values.h" 11 #include "base/values.h"
10 #include "chromeos/network/managed_network_configuration_handler.h" 12 #include "chromeos/network/managed_network_configuration_handler.h"
11 #include "chromeos/network/network_handler_callbacks.h" 13 #include "chromeos/network/network_handler_callbacks.h"
12 #include "components/wifi_sync/wifi_credential.h" 14 #include "components/wifi_sync/wifi_credential.h"
13 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
14 16
15 namespace wifi_sync { 17 namespace wifi_sync {
16 18
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 AddToLocalNetworks(MakeCredential(kSsid, SECURITY_CLASS_NONE, "")); 223 AddToLocalNetworks(MakeCredential(kSsid, SECURITY_CLASS_NONE, ""));
222 EXPECT_TRUE(create_configuration_called()); 224 EXPECT_TRUE(create_configuration_called());
223 if (!create_configuration_error_callback().is_null()) { 225 if (!create_configuration_error_callback().is_null()) {
224 create_configuration_error_callback().Run( 226 create_configuration_error_callback().Run(
225 "Config.CreateConfiguration Failed", 227 "Config.CreateConfiguration Failed",
226 make_scoped_ptr(new base::DictionaryValue())); 228 make_scoped_ptr(new base::DictionaryValue()));
227 } 229 }
228 } 230 }
229 231
230 } // namespace wifi_sync 232 } // namespace wifi_sync
OLDNEW
« no previous file with comments | « components/wifi/wifi_test.cc ('k') | components/wifi_sync/wifi_credential_syncable_service_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698