| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 #ifndef CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_SERVER_H_ | 5 #ifndef NET_TEST_EMBEDDED_TEST_SERVER_HTTP_SERVER_H_ |
| 6 #define CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_SERVER_H_ | 6 #define NET_TEST_EMBEDDED_TEST_SERVER_HTTP_SERVER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "base/threading/thread_checker.h" | 16 #include "base/threading/thread_checker.h" |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 base::WeakPtrFactory<HttpServer> weak_factory_; | 151 base::WeakPtrFactory<HttpServer> weak_factory_; |
| 152 | 152 |
| 153 base::ThreadChecker thread_checker_; | 153 base::ThreadChecker thread_checker_; |
| 154 | 154 |
| 155 DISALLOW_COPY_AND_ASSIGN(HttpServer); | 155 DISALLOW_COPY_AND_ASSIGN(HttpServer); |
| 156 }; | 156 }; |
| 157 | 157 |
| 158 } // namespace test_servers | 158 } // namespace test_servers |
| 159 } // namespace google_apis | 159 } // namespace google_apis |
| 160 | 160 |
| 161 #endif // CHROME_BROWSER_GOOGLE_APIS_TEST_SERVER_HTTP_SERVER_H_ | 161 #endif // NET_TEST_EMBEDDED_TEST_SERVER_HTTP_SERVER_H_ |
| OLD | NEW |