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

Side by Side Diff: chrome/browser/local_discovery/service_discovery_client_unittest.cc

Issue 1967773004: Fix include path for moved thread_task_runner_handle.h header in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a1_move_task_runner_handle
Patch Set: merge up to r393013 Created 4 years, 7 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
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 <stdint.h> 5 #include <stdint.h>
6 6
7 #include "base/location.h" 7 #include "base/location.h"
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "base/run_loop.h" 9 #include "base/run_loop.h"
10 #include "base/single_thread_task_runner.h" 10 #include "base/single_thread_task_runner.h"
11 #include "base/thread_task_runner_handle.h" 11 #include "base/threading/thread_task_runner_handle.h"
12 #include "chrome/browser/local_discovery/service_discovery_client_impl.h" 12 #include "chrome/browser/local_discovery/service_discovery_client_impl.h"
13 #include "net/base/net_errors.h" 13 #include "net/base/net_errors.h"
14 #include "net/dns/dns_protocol.h" 14 #include "net/dns/dns_protocol.h"
15 #include "net/dns/mdns_client_impl.h" 15 #include "net/dns/mdns_client_impl.h"
16 #include "net/dns/mock_mdns_socket_factory.h" 16 #include "net/dns/mock_mdns_socket_factory.h"
17 #include "testing/gmock/include/gmock/gmock.h" 17 #include "testing/gmock/include/gmock/gmock.h"
18 #include "testing/gtest/include/gtest/gtest.h" 18 #include "testing/gtest/include/gtest/gtest.h"
19 19
20 using ::testing::_; 20 using ::testing::_;
21 using ::testing::Invoke; 21 using ::testing::Invoke;
(...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after
507 ServiceResolver::STATUS_REQUEST_TIMEOUT, _, _, _)); 507 ServiceResolver::STATUS_REQUEST_TIMEOUT, _, _, _));
508 508
509 // TODO(noamsml): When NSEC record support is added, change this to use an 509 // TODO(noamsml): When NSEC record support is added, change this to use an
510 // NSEC record. 510 // NSEC record.
511 RunFor(base::TimeDelta::FromSeconds(4)); 511 RunFor(base::TimeDelta::FromSeconds(4));
512 } 512 }
513 513
514 } // namespace 514 } // namespace
515 515
516 } // namespace local_discovery 516 } // namespace local_discovery
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698