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

Side by Side Diff: ios/chrome/test/testing_application_context.mm

Issue 2510803003: Pass RapporService to content/browser/ (Closed)
Patch Set: Fix more compile errors in JNI files Created 4 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/chrome/test/testing_application_context.h" 5 #include "ios/chrome/test/testing_application_context.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/memory/ptr_util.h" 8 #include "base/memory/ptr_util.h"
9 #include "base/time/default_clock.h" 9 #include "base/time/default_clock.h"
10 #include "base/time/default_tick_clock.h" 10 #include "base/time/default_tick_clock.h"
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 DCHECK(thread_checker_.CalledOnValidThread()); 104 DCHECK(thread_checker_.CalledOnValidThread());
105 return nullptr; 105 return nullptr;
106 } 106 }
107 107
108 variations::VariationsService* 108 variations::VariationsService*
109 TestingApplicationContext::GetVariationsService() { 109 TestingApplicationContext::GetVariationsService() {
110 DCHECK(thread_checker_.CalledOnValidThread()); 110 DCHECK(thread_checker_.CalledOnValidThread());
111 return nullptr; 111 return nullptr;
112 } 112 }
113 113
114 rappor::RapporService* TestingApplicationContext::GetRapporService() { 114 rappor::RapporServiceImpl* TestingApplicationContext::GetRapporServiceImpl() {
115 DCHECK(thread_checker_.CalledOnValidThread()); 115 DCHECK(thread_checker_.CalledOnValidThread());
116 return nullptr; 116 return nullptr;
117 } 117 }
118 118
119 net_log::ChromeNetLog* TestingApplicationContext::GetNetLog() { 119 net_log::ChromeNetLog* TestingApplicationContext::GetNetLog() {
120 DCHECK(thread_checker_.CalledOnValidThread()); 120 DCHECK(thread_checker_.CalledOnValidThread());
121 return nullptr; 121 return nullptr;
122 } 122 }
123 123
124 network_time::NetworkTimeTracker* 124 network_time::NetworkTimeTracker*
(...skipping 28 matching lines...) Expand all
153 CRLSetFetcher* TestingApplicationContext::GetCRLSetFetcher() { 153 CRLSetFetcher* TestingApplicationContext::GetCRLSetFetcher() {
154 DCHECK(thread_checker_.CalledOnValidThread()); 154 DCHECK(thread_checker_.CalledOnValidThread());
155 return nullptr; 155 return nullptr;
156 } 156 }
157 157
158 physical_web::PhysicalWebDataSource* 158 physical_web::PhysicalWebDataSource*
159 TestingApplicationContext::GetPhysicalWebDataSource() { 159 TestingApplicationContext::GetPhysicalWebDataSource() {
160 DCHECK(thread_checker_.CalledOnValidThread()); 160 DCHECK(thread_checker_.CalledOnValidThread());
161 return nullptr; 161 return nullptr;
162 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698