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

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

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 #ifndef WebRemoteFrameImpl_h 5 #ifndef WebRemoteFrameImpl_h
6 #define WebRemoteFrameImpl_h 6 #define WebRemoteFrameImpl_h
7 7
8 #include "core/frame/RemoteFrame.h" 8 #include "core/frame/RemoteFrame.h"
9 #include "public/web/WebRemoteFrame.h" 9 #include "public/web/WebRemoteFrame.h"
10 #include "public/web/WebRemoteFrameClient.h" 10 #include "public/web/WebRemoteFrameClient.h"
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 v8::Local<v8::Value> callFunctionEvenIfScriptDisabled( 63 v8::Local<v8::Value> callFunctionEvenIfScriptDisabled(
64 v8::Local<v8::Function>, 64 v8::Local<v8::Function>,
65 v8::Local<v8::Value>, 65 v8::Local<v8::Value>,
66 int argc, 66 int argc,
67 v8::Local<v8::Value> argv[]) override; 67 v8::Local<v8::Value> argv[]) override;
68 v8::Local<v8::Context> mainWorldScriptContext() const override; 68 v8::Local<v8::Context> mainWorldScriptContext() const override;
69 v8::Local<v8::Context> deprecatedMainWorldScriptContext() const override; 69 v8::Local<v8::Context> deprecatedMainWorldScriptContext() const override;
70 void reload(WebFrameLoadType) override; 70 void reload(WebFrameLoadType) override;
71 void reloadWithOverrideURL(const WebURL& overrideUrl, WebFrameLoadType) over ride; 71 void reloadWithOverrideURL(const WebURL& overrideUrl, WebFrameLoadType) over ride;
72 void loadRequest(const WebURLRequest&) override; 72 void loadRequest(const WebURLRequest&) override;
73 void loadHistoryItem(const WebHistoryItem&, WebHistoryLoadType, WebURLReques t::CachePolicy) override; 73 void loadHistoryItem(const WebHistoryItem&, WebHistoryLoadType, WebCachePoli cy) override;
74 void loadHTMLString( 74 void loadHTMLString(
75 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL , 75 const WebData& html, const WebURL& baseURL, const WebURL& unreachableURL ,
76 bool replace) override; 76 bool replace) override;
77 void stopLoading() override; 77 void stopLoading() override;
78 WebDataSource* provisionalDataSource() const override; 78 WebDataSource* provisionalDataSource() const override;
79 WebDataSource* dataSource() const override; 79 WebDataSource* dataSource() const override;
80 void enableViewSourceMode(bool enable) override; 80 void enableViewSourceMode(bool enable) override;
81 bool isViewSourceModeEnabled() const override; 81 bool isViewSourceModeEnabled() const override;
82 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override; 82 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override;
83 void dispatchWillSendRequest(WebURLRequest&) override; 83 void dispatchWillSendRequest(WebURLRequest&) override;
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
189 // cleared upon close(). 189 // cleared upon close().
190 SelfKeepAlive<WebRemoteFrameImpl> m_selfKeepAlive; 190 SelfKeepAlive<WebRemoteFrameImpl> m_selfKeepAlive;
191 #endif 191 #endif
192 }; 192 };
193 193
194 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame() , frame.isWebRemoteFrame()); 194 DEFINE_TYPE_CASTS(WebRemoteFrameImpl, WebFrame, frame, frame->isWebRemoteFrame() , frame.isWebRemoteFrame());
195 195
196 } // namespace blink 196 } // namespace blink
197 197
198 #endif // WebRemoteFrameImpl_h 198 #endif // WebRemoteFrameImpl_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebLocalFrameImpl.cpp ('k') | third_party/WebKit/Source/web/WebRemoteFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698