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

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

Issue 2461043003: Fix for the RedirectTest.ClientServerServer test. (Closed)
Patch Set: More build error fixes 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, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2012 Google Inc. All rights reserved.
3 * Copyright (C) 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2011 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 void didDetectXSS(const KURL&, bool didBlockEntirePage) override; 131 void didDetectXSS(const KURL&, bool didBlockEntirePage) override;
132 void didDispatchPingLoader(const KURL&) override; 132 void didDispatchPingLoader(const KURL&) override;
133 void didDisplayContentWithCertificateErrors(const KURL&) override; 133 void didDisplayContentWithCertificateErrors(const KURL&) override;
134 void didRunContentWithCertificateErrors(const KURL&) override; 134 void didRunContentWithCertificateErrors(const KURL&) override;
135 void didChangePerformanceTiming() override; 135 void didChangePerformanceTiming() override;
136 void didObserveLoadingBehavior(WebLoadingBehaviorFlag) override; 136 void didObserveLoadingBehavior(WebLoadingBehaviorFlag) override;
137 void selectorMatchChanged(const Vector<String>& addedSelectors, 137 void selectorMatchChanged(const Vector<String>& addedSelectors,
138 const Vector<String>& removedSelectors) override; 138 const Vector<String>& removedSelectors) override;
139 DocumentLoader* createDocumentLoader(LocalFrame*, 139 DocumentLoader* createDocumentLoader(LocalFrame*,
140 const ResourceRequest&, 140 const ResourceRequest&,
141 const SubstituteData&) override; 141 const SubstituteData&,
142 ClientRedirectPolicy) override;
142 WTF::String userAgent() override; 143 WTF::String userAgent() override;
143 WTF::String doNotTrackValue() override; 144 WTF::String doNotTrackValue() override;
144 void transitionToCommittedForNewPage() override; 145 void transitionToCommittedForNewPage() override;
145 LocalFrame* createFrame(const FrameLoadRequest&, 146 LocalFrame* createFrame(const FrameLoadRequest&,
146 const WTF::AtomicString& name, 147 const WTF::AtomicString& name,
147 HTMLFrameOwnerElement*) override; 148 HTMLFrameOwnerElement*) override;
148 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const; 149 virtual bool canCreatePluginWithoutRenderer(const String& mimeType) const;
149 Widget* createPlugin(HTMLPlugInElement*, 150 Widget* createPlugin(HTMLPlugInElement*,
150 const KURL&, 151 const KURL&,
151 const Vector<WTF::String>&, 152 const Vector<WTF::String>&,
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 235
235 DEFINE_TYPE_CASTS(FrameLoaderClientImpl, 236 DEFINE_TYPE_CASTS(FrameLoaderClientImpl,
236 FrameLoaderClient, 237 FrameLoaderClient,
237 client, 238 client,
238 client->isFrameLoaderClientImpl(), 239 client->isFrameLoaderClientImpl(),
239 client.isFrameLoaderClientImpl()); 240 client.isFrameLoaderClientImpl());
240 241
241 } // namespace blink 242 } // namespace blink
242 243
243 #endif 244 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698