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

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

Issue 2399463007: AssociatedURLLoader shouldn't derive from WebURLLoader (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 48
49 namespace blink { 49 namespace blink {
50 50
51 class ChromePrintContext; 51 class ChromePrintContext;
52 class IntSize; 52 class IntSize;
53 class KURL; 53 class KURL;
54 class Range; 54 class Range;
55 class ScrollableArea; 55 class ScrollableArea;
56 class SharedWorkerRepositoryClientImpl; 56 class SharedWorkerRepositoryClientImpl;
57 class TextFinder; 57 class TextFinder;
58 class WebAssociatedURLLoader;
59 struct WebAssociatedURLLoaderOptions;
58 class WebAutofillClient; 60 class WebAutofillClient;
59 class WebDataSourceImpl; 61 class WebDataSourceImpl;
60 class WebDevToolsAgentImpl; 62 class WebDevToolsAgentImpl;
61 class WebDevToolsFrontendImpl; 63 class WebDevToolsFrontendImpl;
62 class WebFrameClient; 64 class WebFrameClient;
63 class WebNode; 65 class WebNode;
64 class WebPerformance; 66 class WebPerformance;
65 class WebPlugin; 67 class WebPlugin;
66 class WebPluginContainerImpl; 68 class WebPluginContainerImpl;
67 class WebScriptExecutionCallback; 69 class WebScriptExecutionCallback;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 const WebURL& baseURL, 156 const WebURL& baseURL,
155 const WebURL& unreachableURL, 157 const WebURL& unreachableURL,
156 bool replace) override; 158 bool replace) override;
157 void stopLoading() override; 159 void stopLoading() override;
158 WebDataSource* provisionalDataSource() const override; 160 WebDataSource* provisionalDataSource() const override;
159 WebDataSource* dataSource() const override; 161 WebDataSource* dataSource() const override;
160 void enableViewSourceMode(bool enable) override; 162 void enableViewSourceMode(bool enable) override;
161 bool isViewSourceModeEnabled() const override; 163 bool isViewSourceModeEnabled() const override;
162 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override; 164 void setReferrerForRequest(WebURLRequest&, const WebURL& referrer) override;
163 void dispatchWillSendRequest(WebURLRequest&) override; 165 void dispatchWillSendRequest(WebURLRequest&) override;
164 WebURLLoader* createAssociatedURLLoader(const WebURLLoaderOptions&) override; 166 WebAssociatedURLLoader* createAssociatedURLLoader(
167 const WebAssociatedURLLoaderOptions&) override;
165 unsigned unloadListenerCount() const override; 168 unsigned unloadListenerCount() const override;
166 void setMarkedText(const WebString&, 169 void setMarkedText(const WebString&,
167 unsigned location, 170 unsigned location,
168 unsigned length) override; 171 unsigned length) override;
169 void unmarkText() override; 172 void unmarkText() override;
170 bool hasMarkedText() const override; 173 bool hasMarkedText() const override;
171 WebRange markedRange() const override; 174 WebRange markedRange() const override;
172 bool firstRectForCharacterRange(unsigned location, 175 bool firstRectForCharacterRange(unsigned location,
173 unsigned length, 176 unsigned length,
174 WebRect&) const override; 177 WebRect&) const override;
(...skipping 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 477
475 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 478 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
476 WebFrame, 479 WebFrame,
477 frame, 480 frame,
478 frame->isWebLocalFrame(), 481 frame->isWebLocalFrame(),
479 frame.isWebLocalFrame()); 482 frame.isWebLocalFrame());
480 483
481 } // namespace blink 484 } // namespace blink
482 485
483 #endif 486 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebAssociatedURLLoaderImplTest.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698