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

Unified Diff: content/test/test_browser_thread.cc

Issue 8392042: Split BrowserThread into public API and private implementation, step 1. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/test/test_browser_thread.h ('k') | tools/sort-headers.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/test_browser_thread.cc
diff --git a/content/test/test_browser_thread.cc b/content/test/test_browser_thread.cc
new file mode 100644
index 0000000000000000000000000000000000000000..002a93fd3e5429c8841c553e17ff03b0a5d1ced7
--- /dev/null
+++ b/content/test/test_browser_thread.cc
@@ -0,0 +1,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
« no previous file with comments | « content/test/test_browser_thread.h ('k') | tools/sort-headers.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698