| 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_BUFFERED_RESOURCE_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_BUFFERED_RESOURCE_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_BUFFERED_RESOURCE_HANDLER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_BUFFERED_RESOURCE_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> |
| 10 | 11 |
| 11 #include "content/browser/renderer_host/layered_resource_handler.h" | 12 #include "content/browser/renderer_host/layered_resource_handler.h" |
| 12 | 13 |
| 13 namespace net { | 14 namespace net { |
| 14 class URLRequest; | 15 class URLRequest; |
| 15 } // namespace net | 16 } // namespace net |
| 16 | 17 |
| 17 namespace webkit { | 18 namespace webkit { |
| 18 struct WebPluginInfo; | 19 struct WebPluginInfo; |
| 19 } | 20 } |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 bool next_handler_needs_response_started_; | 93 bool next_handler_needs_response_started_; |
| 93 bool next_handler_needs_will_read_; | 94 bool next_handler_needs_will_read_; |
| 94 bool finished_; | 95 bool finished_; |
| 95 | 96 |
| 96 DISALLOW_COPY_AND_ASSIGN(BufferedResourceHandler); | 97 DISALLOW_COPY_AND_ASSIGN(BufferedResourceHandler); |
| 97 }; | 98 }; |
| 98 | 99 |
| 99 } // namespace content | 100 } // namespace content |
| 100 | 101 |
| 101 #endif // CONTENT_BROWSER_RENDERER_HOST_BUFFERED_RESOURCE_HANDLER_H_ | 102 #endif // CONTENT_BROWSER_RENDERER_HOST_BUFFERED_RESOURCE_HANDLER_H_ |
| OLD | NEW |