| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ |
| 6 #define CHROME_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/browser/renderer_host/resource_handler.h" | 11 #include "content/browser/renderer_host/resource_handler.h" |
| 12 #include "chrome/common/resource_response.h" | 12 #include "chrome/common/resource_response.h" |
| 13 | 13 |
| 14 class ResourceDispatcherHost; | 14 class ResourceDispatcherHost; |
| 15 class ResourceMessageFilter; | 15 class ResourceMessageFilter; |
| 16 | 16 |
| 17 namespace IPC { | 17 namespace IPC { |
| 18 class Message; | 18 class Message; |
| 19 } | 19 } |
| 20 | 20 |
| 21 namespace net { | 21 namespace net { |
| (...skipping 28 matching lines...) Expand all Loading... |
| 50 ~SyncResourceHandler(); | 50 ~SyncResourceHandler(); |
| 51 | 51 |
| 52 scoped_refptr<net::IOBuffer> read_buffer_; | 52 scoped_refptr<net::IOBuffer> read_buffer_; |
| 53 | 53 |
| 54 SyncLoadResult result_; | 54 SyncLoadResult result_; |
| 55 ResourceMessageFilter* filter_; | 55 ResourceMessageFilter* filter_; |
| 56 IPC::Message* result_message_; | 56 IPC::Message* result_message_; |
| 57 ResourceDispatcherHost* rdh_; | 57 ResourceDispatcherHost* rdh_; |
| 58 }; | 58 }; |
| 59 | 59 |
| 60 #endif // CHROME_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ | 60 #endif // CONTENT_BROWSER_RENDERER_HOST_SYNC_RESOURCE_HANDLER_H_ |
| OLD | NEW |