| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 | 43 |
| 44 class Attribute; | 44 class Attribute; |
| 45 class CSSRule; | 45 class CSSRule; |
| 46 class CSSStyleSheet; | 46 class CSSStyleSheet; |
| 47 class CSSValue; | 47 class CSSValue; |
| 48 class Document; | 48 class Document; |
| 49 class Element; | 49 class Element; |
| 50 class FontResource; | 50 class FontResource; |
| 51 class ImageResource; | 51 class ImageResource; |
| 52 class LocalFrame; | 52 class LocalFrame; |
| 53 class Node; | |
| 54 class LayoutObject; | |
| 55 class Resource; | 53 class Resource; |
| 56 class SharedBuffer; | 54 class SharedBuffer; |
| 57 class StylePropertySet; | 55 class StylePropertySet; |
| 58 | 56 |
| 59 struct SerializedResource; | 57 struct SerializedResource; |
| 60 | 58 |
| 61 // This class is used to serialize frame's contents back to text (typically | 59 // This class is used to serialize frame's contents back to text (typically |
| 62 // HTML). It serializes frame's document and resources such as images and CSS | 60 // HTML). It serializes frame's document and resources such as images and CSS |
| 63 // stylesheets. | 61 // stylesheets. |
| 64 class CORE_EXPORT FrameSerializer final { | 62 class CORE_EXPORT FrameSerializer final { |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 HashSet<KURL> m_resourceURLs; | 128 HashSet<KURL> m_resourceURLs; |
| 131 | 129 |
| 132 bool m_isSerializingCss; | 130 bool m_isSerializingCss; |
| 133 | 131 |
| 134 Delegate& m_delegate; | 132 Delegate& m_delegate; |
| 135 }; | 133 }; |
| 136 | 134 |
| 137 } // namespace blink | 135 } // namespace blink |
| 138 | 136 |
| 139 #endif // FrameSerializer_h | 137 #endif // FrameSerializer_h |
| OLD | NEW |