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 CONTENT_BROWSER_RENDERER_HOST_TRANSFER_NAVIGATION_RESOURCE_THROTTLE_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_TRANSFER_NAVIGATION_RESOURCE_THROTTLE_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_TRANSFER_NAVIGATION_RESOURCE_THROTTLE_H_ | 6 #define CONTENT_BROWSER_LOADER_TRANSFER_NAVIGATION_RESOURCE_THROTTLE_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "content/public/browser/resource_throttle.h" | 10 #include "content/public/browser/resource_throttle.h" |
11 | 11 |
12 namespace net { | 12 namespace net { |
13 class URLRequest; | 13 class URLRequest; |
14 } | 14 } |
15 | 15 |
16 namespace content { | 16 namespace content { |
(...skipping 11 matching lines...) Expand all Loading... |
28 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE; | 28 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE; |
29 | 29 |
30 private: | 30 private: |
31 net::URLRequest* request_; | 31 net::URLRequest* request_; |
32 | 32 |
33 DISALLOW_COPY_AND_ASSIGN(TransferNavigationResourceThrottle); | 33 DISALLOW_COPY_AND_ASSIGN(TransferNavigationResourceThrottle); |
34 }; | 34 }; |
35 | 35 |
36 } // namespace content | 36 } // namespace content |
37 | 37 |
38 #endif // CONTENT_BROWSER_RENDERER_HOST_TRANSFER_NAVIGATION_RESOURCE_THROTTLE_H
_ | 38 #endif // CONTENT_BROWSER_LOADER_TRANSFER_NAVIGATION_RESOURCE_THROTTLE_H_ |
OLD | NEW |