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

Unified Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Only get prefix and no capitalization. Created 3 years, 11 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/web/WebLocalFrameImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
index 535bf426b798471bceed6a7e8f7474f31867dfe8..b680b59cb720463c60b251ee7c4439b53e3177f3 100644
--- a/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
+++ b/third_party/WebKit/Source/web/WebLocalFrameImpl.cpp
@@ -733,7 +733,7 @@ void WebLocalFrameImpl::addMessageToConsole(const WebConsoleMessage& message) {
void WebLocalFrameImpl::collectGarbage() {
if (!frame())
return;
- if (!frame()->settings()->scriptEnabled())
+ if (!frame()->settings()->getScriptEnabled())
return;
V8GCController::collectGarbage(v8::Isolate::GetCurrent());
}
@@ -1562,7 +1562,7 @@ void WebLocalFrameImpl::initializeCoreFrame(FrameHost* host,
if (frame()) {
if (frame()->loader().stateMachine()->isDisplayingInitialEmptyDocument() &&
!parent() && !opener() &&
- frame()->settings()->shouldReuseGlobalForUnownedMainFrame()) {
+ frame()->settings()->getShouldReuseGlobalForUnownedMainFrame()) {
frame()->document()->getSecurityOrigin()->grantUniversalAccess();
}
« no previous file with comments | « third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp ('k') | third_party/WebKit/Source/web/WebPagePopupImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698