| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 #endif | 67 #endif |
| 68 | 68 |
| 69 Module* module() const; | 69 Module* module() const; |
| 70 | 70 |
| 71 // HTMLImport | 71 // HTMLImport |
| 72 virtual Document* document() const override; | 72 virtual Document* document() const override; |
| 73 virtual bool isDone() const override; | 73 virtual bool isDone() const override; |
| 74 virtual HTMLImportLoader* loader() const override; | 74 virtual HTMLImportLoader* loader() const override; |
| 75 virtual void stateWillChange() override; | 75 virtual void stateWillChange() override; |
| 76 virtual void stateDidChange() override; | 76 virtual void stateDidChange() override; |
| 77 virtual void trace(Visitor*) override; | |
| 78 | 77 |
| 79 #if !defined(NDEBUG) | 78 #if !defined(NDEBUG) |
| 80 virtual void showThis() override; | 79 virtual void showThis() override; |
| 81 #endif | 80 #endif |
| 82 | 81 |
| 83 void setClient(HTMLImportChildClient*); | 82 void setClient(HTMLImportChildClient*); |
| 84 #if !ENABLE(OILPAN) | 83 #if !ENABLE(OILPAN) |
| 85 void clearClient(); | 84 void clearClient(); |
| 86 #endif | 85 #endif |
| 87 | 86 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 106 | 105 |
| 107 inline HTMLImportChild* toHTMLImportChild(HTMLImport* import) | 106 inline HTMLImportChild* toHTMLImportChild(HTMLImport* import) |
| 108 { | 107 { |
| 109 ASSERT(!import || !import->isRoot()); | 108 ASSERT(!import || !import->isRoot()); |
| 110 return static_cast<HTMLImportChild*>(import); | 109 return static_cast<HTMLImportChild*>(import); |
| 111 } | 110 } |
| 112 | 111 |
| 113 } // namespace blink | 112 } // namespace blink |
| 114 | 113 |
| 115 #endif // HTMLImportChild_h | 114 #endif // HTMLImportChild_h |
| OLD | NEW |