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

Side by Side Diff: sync/internal_api/http_bridge_unittest.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 "base/message_loop_proxy.h" 5 #include "base/message_loop_proxy.h"
6 #include "base/synchronization/waitable_event.h" 6 #include "base/synchronization/waitable_event.h"
7 #include "base/threading/thread.h" 7 #include "base/threading/thread.h"
8 #include "net/test/test_server.h" 8 #include "net/test/test_server.h"
9 #include "net/url_request/test_url_fetcher_factory.h" 9 #include "net/url_request/test_url_fetcher_factory.h"
10 #include "net/url_request/url_fetcher_delegate.h" 10 #include "net/url_request/url_fetcher_delegate.h"
11 #include "net/url_request/url_request_test_util.h" 11 #include "net/url_request/url_request_test_util.h"
12 #include "sync/internal_api/public/http_bridge.h" 12 #include "sync/internal_api/public/http_bridge.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 namespace syncer { 15 namespace syncer {
16 16
17 namespace { 17 namespace {
18 // TODO(timsteele): Should use PathService here. See Chromium Issue 3113. 18 // TODO(timsteele): Should use PathService here. See Chromium Issue 3113.
19 const FilePath::CharType kDocRoot[] = FILE_PATH_LITERAL("chrome/test/data"); 19 const base::FilePath::CharType kDocRoot[] =
20 FILE_PATH_LITERAL("chrome/test/data");
20 } 21 }
21 22
22 class SyncHttpBridgeTest : public testing::Test { 23 class SyncHttpBridgeTest : public testing::Test {
23 public: 24 public:
24 SyncHttpBridgeTest() 25 SyncHttpBridgeTest()
25 : test_server_(net::TestServer::TYPE_HTTP, 26 : test_server_(net::TestServer::TYPE_HTTP,
26 net::TestServer::kLocalhost, 27 net::TestServer::kLocalhost,
27 FilePath(kDocRoot)), 28 base::FilePath(kDocRoot)),
28 fake_default_request_context_getter_(NULL), 29 fake_default_request_context_getter_(NULL),
29 bridge_for_race_test_(NULL), 30 bridge_for_race_test_(NULL),
30 io_thread_("IO thread") { 31 io_thread_("IO thread") {
31 } 32 }
32 33
33 virtual void SetUp() { 34 virtual void SetUp() {
34 base::Thread::Options options; 35 base::Thread::Options options;
35 options.message_loop_type = MessageLoop::TYPE_IO; 36 options.message_loop_type = MessageLoop::TYPE_IO;
36 io_thread_.StartWithOptions(options); 37 io_thread_.StartWithOptions(options);
37 } 38 }
(...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 // succeed even though we Release()d the bridge above because the call to 398 // succeed even though we Release()d the bridge above because the call to
398 // Abort should have held a reference. 399 // Abort should have held a reference.
399 io_waiter.Signal(); 400 io_waiter.Signal();
400 401
401 // Done. 402 // Done.
402 sync_thread.Stop(); 403 sync_thread.Stop();
403 io_thread()->Stop(); 404 io_thread()->Stop();
404 } 405 }
405 406
406 } // namespace syncer 407 } // namespace syncer
OLDNEW
« no previous file with comments | « skia/ext/vector_canvas_unittest.cc ('k') | sync/internal_api/internal_components_factory_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698