Chromium Code Reviews| Index: third_party/WebKit/Source/core/page/Page.h |
| diff --git a/third_party/WebKit/Source/core/page/Page.h b/third_party/WebKit/Source/core/page/Page.h |
| index 6f75adeca66167b95faa128a92e802f37340a819..cde8291adb3d72381b241d287338abb79737f33b 100644 |
| --- a/third_party/WebKit/Source/core/page/Page.h |
| +++ b/third_party/WebKit/Source/core/page/Page.h |
| @@ -119,7 +119,7 @@ public: |
| ViewportDescription viewportDescription() const; |
| static void refreshPlugins(); |
| - PluginData* pluginData() const; |
| + PluginData* pluginData(); |
| EditorClient& editorClient() const { return *m_editorClient; } |
| SpellCheckerClient& spellCheckerClient() const { return *m_spellCheckerClient; } |
| @@ -260,6 +260,8 @@ private: |
| bool m_isCursorVisible; |
| + RefPtr<SecurityOrigin> m_origin; |
|
alexmos
2016/08/02 22:06:28
I'll leave this to Blink reviewers, but storing m_
tommycli
2016/08/02 23:03:16
Thinking it over again, I think I was wrong. Maybe
alexmos
2016/08/04 05:32:02
Yes, I think something like that makes more sense;
trizzofo
2016/08/06 01:30:46
Done.
|
| + |
| #if ENABLE(ASSERT) |
| bool m_isPainting; |
| #endif |