OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TEST_NACL_PNACL_HEADER_TEST_H_ | 5 #ifndef CHROME_TEST_NACL_PNACL_HEADER_TEST_H_ |
6 #define CHROME_TEST_NACL_PNACL_HEADER_TEST_H_ | 6 #define CHROME_TEST_NACL_PNACL_HEADER_TEST_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/test/base/in_process_browser_test.h" | 11 #include "chrome/test/base/in_process_browser_test.h" |
11 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 12 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
12 #include "content/public/common/resource_type.h" | 13 #include "content/public/common/resource_type.h" |
13 | 14 |
14 namespace base { | 15 namespace base { |
15 class FilePath; | 16 class FilePath; |
16 } | 17 } |
17 | 18 |
18 namespace net { | 19 namespace net { |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 scoped_ptr<net::test_server::HttpResponse> WatchForPexeFetch( | 65 scoped_ptr<net::test_server::HttpResponse> WatchForPexeFetch( |
65 const net::test_server::HttpRequest& request); | 66 const net::test_server::HttpRequest& request); |
66 | 67 |
67 int noncors_loads_; | 68 int noncors_loads_; |
68 int cors_loads_; | 69 int cors_loads_; |
69 TestDispatcherHostDelegate test_delegate_; | 70 TestDispatcherHostDelegate test_delegate_; |
70 DISALLOW_COPY_AND_ASSIGN(PnaclHeaderTest); | 71 DISALLOW_COPY_AND_ASSIGN(PnaclHeaderTest); |
71 }; | 72 }; |
72 | 73 |
73 #endif // CHROME_TEST_NACL_PNACL_HEADER_TEST_H_ | 74 #endif // CHROME_TEST_NACL_PNACL_HEADER_TEST_H_ |
OLD | NEW |