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

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

Issue 2701333004: Remove dispatchWillSendRequest from WebFrame (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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 void loadHTMLString(const WebData& html, 153 void loadHTMLString(const WebData& html,
154 const WebURL& baseURL, 154 const WebURL& baseURL,
155 const WebURL& unreachableURL, 155 const WebURL& unreachableURL,
156 bool replace) override; 156 bool replace) override;
157 void stopLoading() override; 157 void stopLoading() override;
158 WebDataSource* provisionalDataSource() const override; 158 WebDataSource* provisionalDataSource() const override;
159 WebDataSource* dataSource() const override; 159 WebDataSource* dataSource() const override;
160 void enableViewSourceMode(bool enable) override; 160 void enableViewSourceMode(bool enable) override;
161 bool isViewSourceModeEnabled() const override; 161 bool isViewSourceModeEnabled() const override;
162 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override; 162 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override;
163 void dispatchWillSendRequest(WebURLRequest&) override;
164 WebAssociatedURLLoader* createAssociatedURLLoader( 163 WebAssociatedURLLoader* createAssociatedURLLoader(
165 const WebAssociatedURLLoaderOptions&) override; 164 const WebAssociatedURLLoaderOptions&) override;
166 unsigned unloadListenerCount() const override; 165 unsigned unloadListenerCount() const override;
167 void setMarkedText(const WebString&, 166 void setMarkedText(const WebString&,
168 unsigned location, 167 unsigned location,
169 unsigned length) override; 168 unsigned length) override;
170 void unmarkText() override; 169 void unmarkText() override;
171 bool hasMarkedText() const override; 170 bool hasMarkedText() const override;
172 WebRange markedRange() const override; 171 WebRange markedRange() const override;
173 bool firstRectForCharacterRange(unsigned location, 172 bool firstRectForCharacterRange(unsigned location,
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 500
502 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 501 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
503 WebFrame, 502 WebFrame,
504 frame, 503 frame,
505 frame->isWebLocalFrame(), 504 frame->isWebLocalFrame(),
506 frame.isWebLocalFrame()); 505 frame.isWebLocalFrame());
507 506
508 } // namespace blink 507 } // namespace blink
509 508
510 #endif 509 #endif
OLDNEW
« no previous file with comments | « content/renderer/fetchers/resource_fetcher_impl.cc ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698