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

Unified Diff: device/geolocation/android/java/org/chromium/device/geolocation/MockLocationProvider.java

Issue 2679323004: Android: Restructure geolocation folder structure (Closed)
Patch Set: Update deps Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: device/geolocation/android/java/org/chromium/device/geolocation/MockLocationProvider.java
diff --git a/device/geolocation/android/java/org/chromium/device/geolocation/MockLocationProvider.java b/device/geolocation/android/java/org/chromium/device/geolocation/MockLocationProvider.java
deleted file mode 100644
index dcfab37c59c5a6f5a40ef0124fdf9d26d4ca6026..0000000000000000000000000000000000000000
--- a/device/geolocation/android/java/org/chromium/device/geolocation/MockLocationProvider.java
+++ /dev/null
@@ -1,89 +0,0 @@
-// Copyright 2013 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.
-
-package org.chromium.device.geolocation;
-
-import android.os.Handler;
-import android.os.HandlerThread;
-import android.os.Message;
-
-/**
- * A mock location provider. When started, runs a background thread that periodically
- * posts location updates. This does not involve any system Location APIs and thus
- * does not require any special permissions in the test app or on the device.
- */
-public class MockLocationProvider implements LocationProviderFactory.LocationProvider {
- private boolean mIsRunning;
- private Handler mHandler;
- private HandlerThread mHandlerThread;
- private final Object mLock = new Object();
-
- private static final int UPDATE_LOCATION_MSG = 100;
-
- public MockLocationProvider() {
- }
-
- public void stopUpdates() {
- if (mHandlerThread != null) {
- mHandlerThread.quit();
- }
- }
-
- @Override
- public void start(boolean enableHighAccuracy) {
- if (mIsRunning) return;
-
- if (mHandlerThread == null) {
- startMockLocationProviderThread();
- }
-
- mIsRunning = true;
- synchronized (mLock) {
- mHandler.sendEmptyMessage(UPDATE_LOCATION_MSG);
- }
- }
-
- @Override
- public void stop() {
- if (!mIsRunning) return;
- mIsRunning = false;
- synchronized (mLock) {
- mHandler.removeMessages(UPDATE_LOCATION_MSG);
- }
- }
-
- @Override
- public boolean isRunning() {
- return mIsRunning;
- }
-
- private void startMockLocationProviderThread() {
- assert mHandlerThread == null;
- assert mHandler == null;
-
- mHandlerThread = new HandlerThread("MockLocationProviderImpl");
- mHandlerThread.start();
- mHandler = new Handler(mHandlerThread.getLooper()) {
- @Override
- public void handleMessage(Message msg) {
- synchronized (mLock) {
- if (msg.what == UPDATE_LOCATION_MSG) {
- newLocation();
- sendEmptyMessageDelayed(UPDATE_LOCATION_MSG, 250);
- }
- }
- }
- };
- }
-
- private void newLocation() {
- LocationProviderAdapter.newLocationAvailable(
- 0, 0, System.currentTimeMillis() / 1000.0,
- false, 0,
- true, 0.5,
- false, 0,
- false, 0);
- }
-};
-

Powered by Google App Engine
This is Rietveld 408576698