Revert "Reject stale geolocation estimates"

This reverts commit 827f73a3b5021bb2ce9b3b51a63f5aa9471198e7.

Reason for revert: 
Broken test geolocation-api/maximum-age.html
since https://uberchromegw.corp.google.com/i/chromium.win/builders/Win7%20Tests%20%28dbg%29%281%29/builds/65059

Original change's description:
> Reject stale geolocation estimates
> 
> The Geolocation API allows callers to specify a maximum age when
> requesting the current location. If the most recent location fix is
> older, the API specifies that a new estimate should be returned.
> 
> With this CL, if we receive a location estimate that is too old to
> satisfy the maximum age option, we will now wait for the provider to
> provide a new estimate.
> 
> BUG=769231
> 
> Change-Id: I2bea9a6df5327bc21e81e1154c6dfa25ef5c40c9
> Reviewed-on: https://chromium-review.googlesource.com/703976
> Commit-Queue: Matt Reynolds <[email protected]>
> Reviewed-by: Mike West <[email protected]>
> Cr-Commit-Position: refs/heads/master@{#522568}

[email protected],[email protected]

Change-Id: I3b32186363734f56570aa3087a7fda432bc5d17d
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Bug: 769231
Reviewed-on: https://chromium-review.googlesource.com/816994
Reviewed-by: Maxim Kolosovskiy <[email protected]>
Commit-Queue: Maxim Kolosovskiy <[email protected]>
Cr-Commit-Position: refs/heads/master@{#522756}
diff --git a/third_party/WebKit/LayoutTests/geolocation-api/callback-to-remote-context2.html b/third_party/WebKit/LayoutTests/geolocation-api/callback-to-remote-context2.html
index 7441fa4..8c4a9d8 100644
--- a/third_party/WebKit/LayoutTests/geolocation-api/callback-to-remote-context2.html
+++ b/third_party/WebKit/LayoutTests/geolocation-api/callback-to-remote-context2.html
@@ -16,7 +16,7 @@
         }, function() {
             testFailed('Error callback invoked unexpectedly');
             finishJSTest();
-        }, { maximumAge: 1000 });
+        });
     }, 0);
 }