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

Side by Side Diff: content/test/data/android/device_files/geolocation.html

Issue 65273002: Add a mechanism to pause and resume geolocation requests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove unsused CVC.isGeolocationActiveForTest API Created 7 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>Geolocation</title>
5 <script>
6 var positionCount = 0;
7 function gotPos(position) {
8 positionCount++;
9 }
10 function initiate_watchPosition() {
11 navigator.geolocation.watchPosition(gotPos, function() { }, { });
12 }
13 </script>
14 </head>
15 <body>
16 </body>
17 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698