| Index: third_party/WebKit/Source/core/fetch/Resource.h
 | 
| diff --git a/third_party/WebKit/Source/core/fetch/Resource.h b/third_party/WebKit/Source/core/fetch/Resource.h
 | 
| index a8066ef6e97e8cb0c18a6bd1a3447aa9b2043f2c..a338bfac11e916a0606fab3c231438dd23edd395 100644
 | 
| --- a/third_party/WebKit/Source/core/fetch/Resource.h
 | 
| +++ b/third_party/WebKit/Source/core/fetch/Resource.h
 | 
| @@ -227,7 +227,7 @@ class CORE_EXPORT Resource : public GarbageCollectedFinalized<Resource>,
 | 
|    bool errorOccurred() const {
 | 
|      return m_status == LoadError || m_status == DecodeError;
 | 
|    }
 | 
| -  bool loadFailedOrCanceled() { return !m_error.isNull(); }
 | 
| +  bool loadFailedOrCanceled() const { return !m_error.isNull(); }
 | 
|  
 | 
|    DataBufferingPolicy getDataBufferingPolicy() const {
 | 
|      return m_options.dataBufferingPolicy;
 | 
| 
 |