OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 // |
| 5 |
| 6 #include "config.h" |
| 7 |
| 8 #include "webkit/glue/resource_loader_bridge.h" |
| 9 |
| 10 #include "net/http/http_response_headers.h" |
| 11 |
| 12 namespace webkit_glue { |
| 13 |
| 14 ResourceLoaderBridge::ResponseInfo::ResponseInfo() { |
| 15 } |
| 16 |
| 17 ResourceLoaderBridge::ResponseInfo::~ResponseInfo() { |
| 18 } |
| 19 |
| 20 ResourceLoaderBridge::SyncLoadResponse::SyncLoadResponse() { |
| 21 } |
| 22 |
| 23 ResourceLoaderBridge::SyncLoadResponse::~SyncLoadResponse() { |
| 24 } |
| 25 |
| 26 ResourceLoaderBridge::ResourceLoaderBridge() { |
| 27 } |
| 28 |
| 29 ResourceLoaderBridge::~ResourceLoaderBridge() { |
| 30 } |
| 31 |
| 32 } // namespace webkit_glue |
OLD | NEW |