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

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

Issue 2113473002: Add a Physical Web data source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: typo Created 4 years, 4 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
« no previous file with comments | « ios/chrome/test/testing_application_context.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 component_updater::ComponentUpdateService* 147 component_updater::ComponentUpdateService*
148 TestingApplicationContext::GetComponentUpdateService() { 148 TestingApplicationContext::GetComponentUpdateService() {
149 DCHECK(thread_checker_.CalledOnValidThread()); 149 DCHECK(thread_checker_.CalledOnValidThread());
150 return nullptr; 150 return nullptr;
151 } 151 }
152 152
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
158 PhysicalWebDataSource* TestingApplicationContext::GetPhysicalWebDataSource() {
159 DCHECK(thread_checker_.CalledOnValidThread());
160 return nullptr;
161 }
OLDNEW
« no previous file with comments | « ios/chrome/test/testing_application_context.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698