| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 #include "core/html/HTMLFrameOwnerElement.h" | 42 #include "core/html/HTMLFrameOwnerElement.h" |
| 43 #include "core/html/HTMLImageElement.h" | 43 #include "core/html/HTMLImageElement.h" |
| 44 #include "core/html/HTMLInputElement.h" | 44 #include "core/html/HTMLInputElement.h" |
| 45 #include "core/html/HTMLTableElement.h" | 45 #include "core/html/HTMLTableElement.h" |
| 46 #include "core/layout/LayoutBox.h" | 46 #include "core/layout/LayoutBox.h" |
| 47 #include "core/loader/DocumentLoader.h" | 47 #include "core/loader/DocumentLoader.h" |
| 48 #include "platform/Histogram.h" | 48 #include "platform/Histogram.h" |
| 49 #include "platform/SerializedResource.h" | 49 #include "platform/SerializedResource.h" |
| 50 #include "platform/SharedBuffer.h" | 50 #include "platform/SharedBuffer.h" |
| 51 #include "platform/instrumentation/tracing/TraceEvent.h" | 51 #include "platform/instrumentation/tracing/TraceEvent.h" |
| 52 #include "platform/loader/fetch/ResourceRequest.h" |
| 53 #include "platform/loader/fetch/ResourceResponse.h" |
| 52 #include "platform/mhtml/MHTMLArchive.h" | 54 #include "platform/mhtml/MHTMLArchive.h" |
| 53 #include "platform/mhtml/MHTMLParser.h" | 55 #include "platform/mhtml/MHTMLParser.h" |
| 54 #include "platform/network/ResourceRequest.h" | |
| 55 #include "platform/network/ResourceResponse.h" | |
| 56 #include "platform/weborigin/KURL.h" | 56 #include "platform/weborigin/KURL.h" |
| 57 #include "public/platform/WebString.h" | 57 #include "public/platform/WebString.h" |
| 58 #include "public/platform/WebURL.h" | 58 #include "public/platform/WebURL.h" |
| 59 #include "public/platform/WebURLResponse.h" | 59 #include "public/platform/WebURLResponse.h" |
| 60 #include "public/platform/WebVector.h" | 60 #include "public/platform/WebVector.h" |
| 61 #include "public/web/WebDataSource.h" | 61 #include "public/web/WebDataSource.h" |
| 62 #include "public/web/WebDocument.h" | 62 #include "public/web/WebDocument.h" |
| 63 #include "public/web/WebFrame.h" | 63 #include "public/web/WebFrame.h" |
| 64 #include "public/web/WebFrameSerializerCacheControlPolicy.h" | 64 #include "public/web/WebFrameSerializerCacheControlPolicy.h" |
| 65 #include "public/web/WebFrameSerializerClient.h" | 65 #include "public/web/WebFrameSerializerClient.h" |
| (...skipping 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 const WebString& baseTarget) { | 467 const WebString& baseTarget) { |
| 468 // TODO(yosin) We should call |FrameSerializer::baseTagDeclarationOf()|. | 468 // TODO(yosin) We should call |FrameSerializer::baseTagDeclarationOf()|. |
| 469 if (baseTarget.isEmpty()) | 469 if (baseTarget.isEmpty()) |
| 470 return String("<base href=\".\">"); | 470 return String("<base href=\".\">"); |
| 471 String baseString = "<base href=\".\" target=\"" + | 471 String baseString = "<base href=\".\" target=\"" + |
| 472 static_cast<const String&>(baseTarget) + "\">"; | 472 static_cast<const String&>(baseTarget) + "\">"; |
| 473 return baseString; | 473 return baseString; |
| 474 } | 474 } |
| 475 | 475 |
| 476 } // namespace blink | 476 } // namespace blink |
| OLD | NEW |