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

Side by Side Diff: chrome/browser/policy/asynchronous_policy_test_base.cc

Issue 10500013: Delete old policy code after AsyncPolicyLoader refactor. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: rebased Created 8 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
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/policy/asynchronous_policy_test_base.h"
6
7 using content::BrowserThread;
8
9 namespace policy {
10
11 ProviderDelegateMock::ProviderDelegateMock()
12 : AsynchronousPolicyProvider::Delegate() {}
13
14 ProviderDelegateMock::~ProviderDelegateMock() {}
15
16 AsynchronousPolicyTestBase::AsynchronousPolicyTestBase()
17 : ui_thread_(BrowserThread::UI, &loop_),
18 file_thread_(BrowserThread::FILE, &loop_) {}
19
20 AsynchronousPolicyTestBase::~AsynchronousPolicyTestBase() {}
21
22 void AsynchronousPolicyTestBase::TearDown() {
23 loop_.RunAllPending();
24 }
25
26 } // namespace policy
OLDNEW
« no previous file with comments | « chrome/browser/policy/asynchronous_policy_test_base.h ('k') | chrome/browser/policy/file_based_policy_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698