blob: 002a93fd3e5429c8841c553e17ff03b0a5d1ced7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/test/test_browser_thread.h"
namespace content {
TestBrowserThread::TestBrowserThread(ID identifier)
: BrowserThreadImpl(identifier) {
}
TestBrowserThread::TestBrowserThread(ID identifier, MessageLoop* message_loop)
: BrowserThreadImpl(identifier, message_loop) {
}
TestBrowserThread::~TestBrowserThread() {
}
} // namespace content
|