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

Side by Side Diff: blimp/engine/app/blimp_content_browser_client.h

Issue 2098553002: Geolocation: extract ContentBrowserClient methods specific to Geolocation into a class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changing to ContentBrowserClient::GetGeolocationServiceOverrides and impl'd in the 6 impl's. Unitte… Created 4 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_
6 #define BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ 6 #define BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "blimp/engine/feature/geolocation/blimp_location_provider.h" 9 #include "blimp/engine/feature/geolocation/blimp_location_provider.h"
10 #include "content/public/browser/content_browser_client.h" 10 #include "content/public/browser/content_browser_client.h"
(...skipping 15 matching lines...) Expand all
26 26
27 // content::ContentBrowserClient implementation. 27 // content::ContentBrowserClient implementation.
28 content::BrowserMainParts* CreateBrowserMainParts( 28 content::BrowserMainParts* CreateBrowserMainParts(
29 const content::MainFunctionParams& parameters) override; 29 const content::MainFunctionParams& parameters) override;
30 void OverrideWebkitPrefs(content::RenderViewHost* render_view_host, 30 void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
31 content::WebPreferences* prefs) override; 31 content::WebPreferences* prefs) override;
32 void RegisterRenderProcessMojoServices( 32 void RegisterRenderProcessMojoServices(
33 content::ServiceRegistry* registry, 33 content::ServiceRegistry* registry,
34 content::RenderProcessHost* render_process_host) override; 34 content::RenderProcessHost* render_process_host) override;
35 35
36 content::GeolocationProvider::ServiceOverrides*
37 GetGeolocationServiceOverrides() override;
38
36 content::LocationProvider* OverrideSystemLocationProvider() override; 39 content::LocationProvider* OverrideSystemLocationProvider() override;
37 bool UseNetworkLocationProviders() override; 40 bool UseNetworkLocationProviders() override;
38 41
39 BlimpBrowserContext* GetBrowserContext(); 42 BlimpBrowserContext* GetBrowserContext();
40 43
41 private: 44 private:
42 // Owned by BrowserMainLoop 45 // Owned by BrowserMainLoop
43 BlimpBrowserMainParts* blimp_browser_main_parts_ = nullptr; 46 BlimpBrowserMainParts* blimp_browser_main_parts_ = nullptr;
44 47
45 std::unique_ptr<BlimpLocationProvider> location_provider_; 48 std::unique_ptr<BlimpLocationProvider> location_provider_;
46 49
47 DISALLOW_COPY_AND_ASSIGN(BlimpContentBrowserClient); 50 DISALLOW_COPY_AND_ASSIGN(BlimpContentBrowserClient);
48 }; 51 };
49 52
50 } // namespace engine 53 } // namespace engine
51 } // namespace blimp 54 } // namespace blimp
52 55
53 #endif // BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_ 56 #endif // BLIMP_ENGINE_APP_BLIMP_CONTENT_BROWSER_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698