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

Unified Diff: chrome/browser/geolocation/win7_location_provider_unittest_win.cc

Issue 5676004: Cleanup: Remove unneeded browser_thread.h usage. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix deps Created 10 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/geolocation/win7_location_provider_unittest_win.cc
===================================================================
--- chrome/browser/geolocation/win7_location_provider_unittest_win.cc (revision 68879)
+++ chrome/browser/geolocation/win7_location_provider_unittest_win.cc (working copy)
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/browser_thread.h"
+#include "base/message_loop.h"
#include "chrome/browser/geolocation/win7_location_provider_win.h"
#include "chrome/browser/geolocation/win7_location_api_win.h"
#include "testing/gmock/include/gmock/gmock.h"
@@ -49,10 +49,10 @@
}
private:
- MockWin7LocationApi() : Win7LocationApi(NULL, NULL, NULL) {
+ MockWin7LocationApi() : Win7LocationApi(NULL, NULL, NULL) {
ON_CALL(*this, GetPosition(_))
.WillByDefault(Invoke(this,
- &MockWin7LocationApi::GetPositionValid));
+ &MockWin7LocationApi::GetPositionValid));
ON_CALL(*this, SetHighAccuracy(true))
.WillByDefault(Return(true));
ON_CALL(*this, SetHighAccuracy(false))

Powered by Google App Engine
This is Rietveld 408576698