| Index: Source/core/html/imports/HTMLImportLoader.h | 
| diff --git a/Source/core/html/imports/HTMLImportLoader.h b/Source/core/html/imports/HTMLImportLoader.h | 
| index d498cc36c6480e1966695a2fafe7a0f8f06a7ab2..e316754d6c9942b6f8fff8ee64857fc9ab084e7e 100644 | 
| --- a/Source/core/html/imports/HTMLImportLoader.h | 
| +++ b/Source/core/html/imports/HTMLImportLoader.h | 
| @@ -75,7 +75,7 @@ public: | 
| void removeImport(HTMLImportChild*); | 
| void moveToFirst(HTMLImportChild*); | 
| HTMLImportChild* firstImport() const { return m_imports[0]; } | 
| -    bool isFirstImport(HTMLImportChild* child) const { return m_imports.size() ? firstImport() == child : false; } | 
| +    bool isFirstImport(const HTMLImportChild* child) const { return m_imports.size() ? firstImport() == child : false; } | 
|  | 
| bool isDone() const { return m_state == StateLoaded || m_state == StateError; } | 
| bool hasError() const { return m_state == StateError; } | 
|  |