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

Side by Side Diff: ios/public/provider/chrome/browser/chrome_browser_provider.cc

Issue 1103293002: [iOS] Upstream iOS geolocation code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comments Created 5 years, 7 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h" 5 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
6 6
7 namespace ios { 7 namespace ios {
8 8
9 namespace { 9 namespace {
10 ChromeBrowserProvider* g_chrome_browser_provider; 10 ChromeBrowserProvider* g_chrome_browser_provider;
(...skipping 30 matching lines...) Expand all
41 } 41 }
42 42
43 InfoBarViewPlaceholder* ChromeBrowserProvider::CreateInfoBarView() { 43 InfoBarViewPlaceholder* ChromeBrowserProvider::CreateInfoBarView() {
44 return nullptr; 44 return nullptr;
45 } 45 }
46 46
47 StringProvider* ChromeBrowserProvider::GetStringProvider() { 47 StringProvider* ChromeBrowserProvider::GetStringProvider() {
48 return nullptr; 48 return nullptr;
49 } 49 }
50 50
51 GeolocationUpdaterProvider*
52 ChromeBrowserProvider::GetGeolocationUpdaterProvider() {
53 return nullptr;
54 }
55
51 void ChromeBrowserProvider::ShowTranslateSettings() { 56 void ChromeBrowserProvider::ShowTranslateSettings() {
52 } 57 }
53 58
54 const char* ChromeBrowserProvider::GetChromeUIScheme() { 59 const char* ChromeBrowserProvider::GetChromeUIScheme() {
55 return nullptr; 60 return nullptr;
56 } 61 }
57 62
58 void ChromeBrowserProvider::SetUIViewAlphaWithAnimation(UIView* view, 63 void ChromeBrowserProvider::SetUIViewAlphaWithAnimation(UIView* view,
59 float alpha) { 64 float alpha) {
60 } 65 }
61 66
62 } // namespace ios 67 } // namespace ios
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698