OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2011 Google Inc. All rights reserved. | 2 * Copyright (C) 2011 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 27 matching lines...) Expand all Loading... |
38 #include "core/css/CSSImageValue.h" | 38 #include "core/css/CSSImageValue.h" |
39 #include "core/css/CSSImportRule.h" | 39 #include "core/css/CSSImportRule.h" |
40 #include "core/css/CSSStyleDeclaration.h" | 40 #include "core/css/CSSStyleDeclaration.h" |
41 #include "core/css/CSSStyleRule.h" | 41 #include "core/css/CSSStyleRule.h" |
42 #include "core/css/CSSValueList.h" | 42 #include "core/css/CSSValueList.h" |
43 #include "core/css/StylePropertySet.h" | 43 #include "core/css/StylePropertySet.h" |
44 #include "core/css/StyleRule.h" | 44 #include "core/css/StyleRule.h" |
45 #include "core/css/StyleSheetContents.h" | 45 #include "core/css/StyleSheetContents.h" |
46 #include "core/dom/Document.h" | 46 #include "core/dom/Document.h" |
47 #include "core/dom/Element.h" | 47 #include "core/dom/Element.h" |
| 48 #include "core/dom/ImageResource.h" |
48 #include "core/dom/Text.h" | 49 #include "core/dom/Text.h" |
49 #include "core/editing/MarkupAccumulator.h" | 50 #include "core/editing/MarkupAccumulator.h" |
50 #include "core/fetch/FontResource.h" | 51 #include "core/fetch/FontResource.h" |
51 #include "core/fetch/ImageResource.h" | |
52 #include "core/frame/LocalFrame.h" | 52 #include "core/frame/LocalFrame.h" |
53 #include "core/html/HTMLFrameOwnerElement.h" | 53 #include "core/html/HTMLFrameOwnerElement.h" |
54 #include "core/html/HTMLImageElement.h" | 54 #include "core/html/HTMLImageElement.h" |
55 #include "core/html/HTMLInputElement.h" | 55 #include "core/html/HTMLInputElement.h" |
56 #include "core/html/HTMLLinkElement.h" | 56 #include "core/html/HTMLLinkElement.h" |
57 #include "core/html/HTMLMetaElement.h" | 57 #include "core/html/HTMLMetaElement.h" |
58 #include "core/html/HTMLStyleElement.h" | 58 #include "core/html/HTMLStyleElement.h" |
59 #include "core/html/ImageDocument.h" | 59 #include "core/html/ImageDocument.h" |
60 #include "core/html/parser/HTMLParserIdioms.h" | 60 #include "core/html/parser/HTMLParserIdioms.h" |
61 #include "core/page/Page.h" | 61 #include "core/page/Page.h" |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
423 | 423 |
424 return fakeURL; | 424 return fakeURL; |
425 } | 425 } |
426 | 426 |
427 PageSerializer::Delegate* PageSerializer::delegate() | 427 PageSerializer::Delegate* PageSerializer::delegate() |
428 { | 428 { |
429 return m_delegate.get(); | 429 return m_delegate.get(); |
430 } | 430 } |
431 | 431 |
432 } // namespace blink | 432 } // namespace blink |
OLD | NEW |