Chromium Code Reviews| Index: blimp/engine/app/blimp_content_browser_client.h |
| diff --git a/blimp/engine/app/blimp_content_browser_client.h b/blimp/engine/app/blimp_content_browser_client.h |
| index ab5e89578e5d1e634a3e13afc166cfe3a05ab1d5..8b9f989e8f2b27a651c134b4a101a6c0fb88681c 100644 |
| --- a/blimp/engine/app/blimp_content_browser_client.h |
| +++ b/blimp/engine/app/blimp_content_browser_client.h |
| @@ -6,6 +6,7 @@ |
| #define BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ |
| #include "base/macros.h" |
| +#include "blimp/engine/feature/geolocation/blimp_location_provider.h" |
| #include "content/public/browser/content_browser_client.h" |
| namespace blimp { |
| @@ -33,10 +34,16 @@ class BlimpContentBrowserClient : public content::ContentBrowserClient { |
| BlimpBrowserContext* GetBrowserContext(); |
| + content::LocationProvider* OverrideSystemLocationProvider() override; |
|
Kevin M
2016/05/31 23:43:55
Cluster these overrides with the others under "con
CJ
2016/05/31 23:51:24
Done.
|
| + |
| + bool UseDefaultLocationProviders() override; |
| + |
| private: |
| // Owned by BrowserMainLoop |
| BlimpBrowserMainParts* blimp_browser_main_parts_ = nullptr; |
| + BlimpLocationProvider location_provider_; |
| + |
| DISALLOW_COPY_AND_ASSIGN(BlimpContentBrowserClient); |
| }; |