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

Side by Side Diff: content/browser/geolocation/wifi_data_provider_common_unittest.cc

Issue 16755004: Use a direct include of strings headers in content/browser/, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
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 <vector> 5 #include <vector>
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "base/string_util.h" 8 #include "base/strings/string_util.h"
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "base/third_party/dynamic_annotations/dynamic_annotations.h" 10 #include "base/third_party/dynamic_annotations/dynamic_annotations.h"
11 #include "content/browser/geolocation/wifi_data_provider_common.h" 11 #include "content/browser/geolocation/wifi_data_provider_common.h"
12 #include "testing/gmock/include/gmock/gmock.h" 12 #include "testing/gmock/include/gmock/gmock.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 using testing::_; 15 using testing::_;
16 using testing::AtLeast; 16 using testing::AtLeast;
17 using testing::DoDefault; 17 using testing::DoDefault;
18 using testing::Invoke; 18 using testing::Invoke;
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 StartThreadViaDeviceDataProvider) { 224 StartThreadViaDeviceDataProvider) {
225 MessageLoopQuitListener quit_listener(&main_message_loop_); 225 MessageLoopQuitListener quit_listener(&main_message_loop_);
226 WifiDataProvider::SetFactory(CreateWifiDataProviderCommonWithMock); 226 WifiDataProvider::SetFactory(CreateWifiDataProviderCommonWithMock);
227 DeviceDataProvider<WifiData>::Register(&quit_listener); 227 DeviceDataProvider<WifiData>::Register(&quit_listener);
228 main_message_loop_.Run(); 228 main_message_loop_.Run();
229 DeviceDataProvider<WifiData>::Unregister(&quit_listener); 229 DeviceDataProvider<WifiData>::Unregister(&quit_listener);
230 DeviceDataProvider<WifiData>::ResetFactory(); 230 DeviceDataProvider<WifiData>::ResetFactory();
231 } 231 }
232 232
233 } // namespace content 233 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/geolocation/wifi_data_provider_common.cc ('k') | content/browser/geolocation/wifi_data_provider_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698