Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* | |
| 2 * Copyright (C) 2017 Google Inc. All rights reserved. | |
| 3 * | |
| 4 * Redistribution and use in source and binary forms, with or without | |
| 5 * modification, are permitted provided that the following conditions are | |
| 6 * met: | |
| 7 * | |
| 8 * * Redistributions of source code must retain the above copyright | |
| 9 * notice, this list of conditions and the following disclaimer. | |
| 10 * * Redistributions in binary form must reproduce the above | |
| 11 * copyright notice, this list of conditions and the following disclaimer | |
| 12 * in the documentation and/or other materials provided with the | |
| 13 * distribution. | |
| 14 * * Neither the name of Google Inc. nor the names of its | |
| 15 * contributors may be used to endorse or promote products derived from | |
| 16 * this software without specific prior written permission. | |
| 17 * | |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |
| 29 */ | |
| 30 | |
| 31 #ifndef WebPageProblemDetector_h | |
| 32 #define WebPageProblemDetector_h | |
| 33 | |
| 34 #include <memory> | |
| 35 #include <vector> | |
| 36 | |
| 37 namespace blink { | |
| 38 | |
| 39 class Node; | |
| 40 | |
| 41 // Interface for individual web page problem detector, which will be called | |
| 42 // through MHTMLFrameSerializerDelegate on each of the node during DOM walking | |
| 43 // when serializing a page as MHTML. | |
| 44 class WebPageProblemDetector { | |
| 45 public: | |
| 46 // Visits a node in the DOM tree. | |
| 47 virtual void VisitNode(const Node*) = 0; | |
| 48 // Called when the visiting finishes. | |
| 49 virtual void VisitingDone() = 0; | |
| 50 }; | |
| 51 | |
| 52 // Holds all problem detectors so we can visit all of them. | |
| 53 class WebPageProblemDetectorCollection : public WebPageProblemDetector { | |
| 54 public: | |
| 55 // Used to register a problem detector. | |
| 56 void AddDetector(std::unique_ptr<WebPageProblemDetector>); | |
| 57 | |
| 58 // When we are visiting a node, call all registered problem observers and give | |
| 59 // them an opportunity to examine the node. | |
| 60 void VisitNode(const Node*) override; | |
| 61 | |
| 62 // When the DOM walk is over, give each detector a chance to compute and | |
| 63 // report results. | |
| 64 void VisitingDone() override; | |
| 65 | |
| 66 private: | |
| 67 std::vector<std::unique_ptr<WebPageProblemDetector>> detectors_; | |
| 68 }; | |
| 69 | |
| 70 // A class which tries to gather information to determine if a page can be | |
| 71 // treated as a blank page during page serialization as MHTML. | |
| 72 class BlankPageDetector : public WebPageProblemDetector { | |
| 73 void VisitNode(const Node*) override; | |
| 74 void VisitingDone() override; | |
| 75 }; | |
| 76 | |
| 77 // A class which tries to gather information about number of missing images of a | |
| 78 // page during page serialization as MHTML. | |
| 79 class MissingImageDetector : public WebPageProblemDetector { | |
|
Pete Williamson
2017/05/17 00:31:48
Let's move this and the CSS detector into their ow
romax
2017/05/17 22:28:19
Done.
| |
| 80 public: | |
| 81 void VisitNode(const Node*) override; | |
| 82 void VisitingDone() override; | |
| 83 }; | |
| 84 | |
| 85 // A class which tries to gather information about if the page is missing CSS | |
| 86 // files during page serialization as MHTML. | |
| 87 class MissingCSSDetector : public WebPageProblemDetector { | |
| 88 public: | |
| 89 void VisitNode(const Node*) override; | |
| 90 void VisitingDone() override; | |
| 91 }; | |
| 92 | |
| 93 } // namespace blink | |
| 94 #endif // WebPageProblemDetector_h | |
| OLD | NEW |