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

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

Issue 2932273003: [ObjC ARC] Converts ios/chrome/test:test_support to ARC. (Closed)
Patch Set: Review feedback. Created 3 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
« no previous file with comments | « ios/chrome/test/scoped_key_window.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"
11 #include "components/network_time/network_time_tracker.h" 11 #include "components/network_time/network_time_tracker.h"
12 #import "ios/public/provider/chrome/browser/chrome_browser_provider.h" 12 #import "ios/public/provider/chrome/browser/chrome_browser_provider.h"
13 #include "net/url_request/url_request_context_getter.h" 13 #include "net/url_request/url_request_context_getter.h"
14 14
15 #if !defined(__has_feature) || !__has_feature(objc_arc)
16 #error "This file requires ARC support."
17 #endif
18
15 TestingApplicationContext::TestingApplicationContext() 19 TestingApplicationContext::TestingApplicationContext()
16 : application_locale_("en"), 20 : application_locale_("en"),
17 local_state_(nullptr), 21 local_state_(nullptr),
18 chrome_browser_state_manager_(nullptr), 22 chrome_browser_state_manager_(nullptr),
19 was_last_shutdown_clean_(false) { 23 was_last_shutdown_clean_(false) {
20 DCHECK(!GetApplicationContext()); 24 DCHECK(!GetApplicationContext());
21 SetApplicationContext(this); 25 SetApplicationContext(this);
22 } 26 }
23 27
24 TestingApplicationContext::~TestingApplicationContext() { 28 TestingApplicationContext::~TestingApplicationContext() {
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 CRLSetFetcher* TestingApplicationContext::GetCRLSetFetcher() { 162 CRLSetFetcher* TestingApplicationContext::GetCRLSetFetcher() {
159 DCHECK(thread_checker_.CalledOnValidThread()); 163 DCHECK(thread_checker_.CalledOnValidThread());
160 return nullptr; 164 return nullptr;
161 } 165 }
162 166
163 physical_web::PhysicalWebDataSource* 167 physical_web::PhysicalWebDataSource*
164 TestingApplicationContext::GetPhysicalWebDataSource() { 168 TestingApplicationContext::GetPhysicalWebDataSource() {
165 DCHECK(thread_checker_.CalledOnValidThread()); 169 DCHECK(thread_checker_.CalledOnValidThread());
166 return nullptr; 170 return nullptr;
167 } 171 }
OLDNEW
« no previous file with comments | « ios/chrome/test/scoped_key_window.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698