| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #ifndef CHROME_BROWSER_SYNC_NOTIFIER_BASE_ASYNC_DNS_LOOKUP_H_ | 5 #ifndef CHROME_COMMON_NET_NOTIFIER_BASE_ASYNC_DNS_LOOKUP_H_ |
| 6 #define CHROME_BROWSER_SYNC_NOTIFIER_BASE_ASYNC_DNS_LOOKUP_H_ | 6 #define CHROME_COMMON_NET_NOTIFIER_BASE_ASYNC_DNS_LOOKUP_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| 11 #include "talk/base/signalthread.h" | 11 #include "talk/base/signalthread.h" |
| 12 | 12 |
| 13 namespace talk_base { | 13 namespace talk_base { |
| 14 class SocketAddress; | 14 class SocketAddress; |
| 15 class Task; | 15 class Task; |
| 16 } | 16 } |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 scoped_ptr<talk_base::SocketAddress> server_; | 41 scoped_ptr<talk_base::SocketAddress> server_; |
| 42 talk_base::CriticalSection cs_; | 42 talk_base::CriticalSection cs_; |
| 43 int error_; | 43 int error_; |
| 44 std::vector<uint32> ip_list_; | 44 std::vector<uint32> ip_list_; |
| 45 | 45 |
| 46 DISALLOW_COPY_AND_ASSIGN(AsyncDNSLookup); | 46 DISALLOW_COPY_AND_ASSIGN(AsyncDNSLookup); |
| 47 }; | 47 }; |
| 48 | 48 |
| 49 } // namespace notifier | 49 } // namespace notifier |
| 50 | 50 |
| 51 #endif // CHROME_BROWSER_SYNC_NOTIFIER_BASE_ASYNC_DNS_LOOKUP_H_ | 51 #endif // CHROME_COMMON_NET_NOTIFIER_BASE_ASYNC_DNS_LOOKUP_H_ |
| OLD | NEW |