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

Side by Side Diff: third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp

Issue 1843663005: Change bool ignoreCache to WebFrameLoadType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 8 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "web/WebRemoteFrameImpl.h" 5 #include "web/WebRemoteFrameImpl.h"
6 6
7 #include "core/frame/FrameView.h" 7 #include "core/frame/FrameView.h"
8 #include "core/frame/Settings.h" 8 #include "core/frame/Settings.h"
9 #include "core/html/HTMLFrameOwnerElement.h" 9 #include "core/html/HTMLFrameOwnerElement.h"
10 #include "core/layout/LayoutObject.h" 10 #include "core/layout/LayoutObject.h"
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 { 258 {
259 ASSERT_NOT_REACHED(); 259 ASSERT_NOT_REACHED();
260 return v8::Local<v8::Context>(); 260 return v8::Local<v8::Context>();
261 } 261 }
262 262
263 v8::Local<v8::Context> WebRemoteFrameImpl::deprecatedMainWorldScriptContext() co nst 263 v8::Local<v8::Context> WebRemoteFrameImpl::deprecatedMainWorldScriptContext() co nst
264 { 264 {
265 return toV8Context(frame(), DOMWrapperWorld::mainWorld()); 265 return toV8Context(frame(), DOMWrapperWorld::mainWorld());
266 } 266 }
267 267
268 void WebRemoteFrameImpl::reload(bool ignoreCache) 268 void WebRemoteFrameImpl::reload(WebFrameLoadType)
269 { 269 {
270 ASSERT_NOT_REACHED(); 270 ASSERT_NOT_REACHED();
271 } 271 }
272 272
273 void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, bool i gnoreCache) 273 void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, WebFra meLoadType)
274 { 274 {
275 ASSERT_NOT_REACHED(); 275 ASSERT_NOT_REACHED();
276 } 276 }
277 277
278 void WebRemoteFrameImpl::loadRequest(const WebURLRequest&) 278 void WebRemoteFrameImpl::loadRequest(const WebURLRequest&)
279 { 279 {
280 ASSERT_NOT_REACHED(); 280 ASSERT_NOT_REACHED();
281 } 281 }
282 282
283 void WebRemoteFrameImpl::loadHistoryItem(const WebHistoryItem&, WebHistoryLoadTy pe, WebURLRequest::CachePolicy) 283 void WebRemoteFrameImpl::loadHistoryItem(const WebHistoryItem&, WebHistoryLoadTy pe, WebURLRequest::CachePolicy)
(...skipping 428 matching lines...) Expand 10 before | Expand all | Expand 10 after
712 : WebRemoteFrame(scope) 712 : WebRemoteFrame(scope)
713 , m_frameClient(RemoteFrameClientImpl::create(this)) 713 , m_frameClient(RemoteFrameClientImpl::create(this))
714 , m_client(client) 714 , m_client(client)
715 #if ENABLE(OILPAN) 715 #if ENABLE(OILPAN)
716 , m_selfKeepAlive(this) 716 , m_selfKeepAlive(this)
717 #endif 717 #endif
718 { 718 {
719 } 719 }
720 720
721 } // namespace blink 721 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebRemoteFrameImpl.h ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698