Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(32)

Unified Diff: third_party/WebKit/Source/core/page/Page.h

Issue 2709263003: Removed FrameHost::settings() (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 d5721803ffa2f42542a0eed3f33f26246cb72052..10ca9113485526a9ff3b784970594fce7929d012 100644
--- a/third_party/WebKit/Source/core/page/Page.h
+++ b/third_party/WebKit/Source/core/page/Page.h
@@ -173,7 +173,8 @@ class CORE_EXPORT Page final : public GarbageCollectedFinalized<Page>,
ClientRectList* nonFastScrollableRects(const LocalFrame*);
- Settings& settings() const { return *m_settings; }
+ Settings& settings() { return *m_settings; }
+ const Settings& settings() const { return *m_settings; }
sashab 2017/02/23 05:01:11 dcheng - I copied this method style from FrameHost
UseCounter& useCounter() { return m_useCounter; }
Deprecation& deprecation() { return m_deprecation; }

Powered by Google App Engine
This is Rietveld 408576698