| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 result.append(postActionAfterSerializeEndTag(element, param)); | 404 result.append(postActionAfterSerializeEndTag(element, param)); |
| 405 // Save the result to data buffer. | 405 // Save the result to data buffer. |
| 406 saveHTMLContentToBuffer(result.toString(), param); | 406 saveHTMLContentToBuffer(result.toString(), param); |
| 407 } | 407 } |
| 408 | 408 |
| 409 void WebFrameSerializerImpl::buildContentForNode( | 409 void WebFrameSerializerImpl::buildContentForNode( |
| 410 Node* node, | 410 Node* node, |
| 411 SerializeDomParam* param) | 411 SerializeDomParam* param) |
| 412 { | 412 { |
| 413 switch (node->getNodeType()) { | 413 switch (node->getNodeType()) { |
| 414 case Node::ELEMENT_NODE: | 414 case Node::kElementNode: |
| 415 // Process open tag of element. | 415 // Process open tag of element. |
| 416 openTagToString(toElement(node), param); | 416 openTagToString(toElement(node), param); |
| 417 // Walk through the children nodes and process it. | 417 // Walk through the children nodes and process it. |
| 418 for (Node *child = node->firstChild(); child; child = child->nextSibling
()) | 418 for (Node *child = node->firstChild(); child; child = child->nextSibling
()) |
| 419 buildContentForNode(child, param); | 419 buildContentForNode(child, param); |
| 420 // Process end tag of element. | 420 // Process end tag of element. |
| 421 endTagToString(toElement(node), param); | 421 endTagToString(toElement(node), param); |
| 422 break; | 422 break; |
| 423 case Node::TEXT_NODE: | 423 case Node::kTextNode: |
| 424 saveHTMLContentToBuffer(createMarkup(node), param); | 424 saveHTMLContentToBuffer(createMarkup(node), param); |
| 425 break; | 425 break; |
| 426 case Node::ATTRIBUTE_NODE: | 426 case Node::kAttributeNode: |
| 427 case Node::DOCUMENT_NODE: | 427 case Node::kDocumentNode: |
| 428 case Node::DOCUMENT_FRAGMENT_NODE: | 428 case Node::kDocumentFragmentNode: |
| 429 // Should not exist. | 429 // Should not exist. |
| 430 NOTREACHED(); | 430 NOTREACHED(); |
| 431 break; | 431 break; |
| 432 // Document type node can be in DOM? | 432 // Document type node can be in DOM? |
| 433 case Node::DOCUMENT_TYPE_NODE: | 433 case Node::kDocumentTypeNode: |
| 434 param->haveSeenDocType = true; | 434 param->haveSeenDocType = true; |
| 435 default: | 435 default: |
| 436 // For other type node, call default action. | 436 // For other type node, call default action. |
| 437 saveHTMLContentToBuffer(createMarkup(node), param); | 437 saveHTMLContentToBuffer(createMarkup(node), param); |
| 438 break; | 438 break; |
| 439 } | 439 } |
| 440 } | 440 } |
| 441 | 441 |
| 442 WebFrameSerializerImpl::WebFrameSerializerImpl( | 442 WebFrameSerializerImpl::WebFrameSerializerImpl( |
| 443 WebLocalFrame* frame, | 443 WebLocalFrame* frame, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 // Report empty contents for invalid URLs. | 485 // Report empty contents for invalid URLs. |
| 486 m_client->didSerializeDataForFrame( | 486 m_client->didSerializeDataForFrame( |
| 487 WebCString(), WebFrameSerializerClient::CurrentFrameIsFinished); | 487 WebCString(), WebFrameSerializerClient::CurrentFrameIsFinished); |
| 488 } | 488 } |
| 489 | 489 |
| 490 DCHECK(m_dataBuffer.isEmpty()); | 490 DCHECK(m_dataBuffer.isEmpty()); |
| 491 return didSerialization; | 491 return didSerialization; |
| 492 } | 492 } |
| 493 | 493 |
| 494 } // namespace blink | 494 } // namespace blink |
| OLD | NEW |