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

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

Issue 1858533002: Introduce WebCachePolicy to merge cache policy enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: hiroshige review 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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 void WebRemoteFrameImpl::reloadWithOverrideURL(const WebURL& overrideUrl, WebFra meLoadType) 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, WebCachePolicy)
284 { 284 {
285 ASSERT_NOT_REACHED(); 285 ASSERT_NOT_REACHED();
286 } 286 }
287 287
288 void WebRemoteFrameImpl::loadHTMLString( 288 void WebRemoteFrameImpl::loadHTMLString(
289 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL, 289 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL,
290 bool replace) 290 bool replace)
291 { 291 {
292 ASSERT_NOT_REACHED(); 292 ASSERT_NOT_REACHED();
293 } 293 }
(...skipping 418 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/tests/FrameTestHelpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698