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

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

Issue 2768813002: PlzNavigate: don't stop all loaders when renderer-initiated nav fails
Patch Set: Removed id Created 3 years, 9 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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 bool isNavigationScheduledWithin(double interval) const override; 268 bool isNavigationScheduledWithin(double interval) const override;
269 void setCommittedFirstRealLoad() override; 269 void setCommittedFirstRealLoad() override;
270 void setHasReceivedUserGesture() override; 270 void setHasReceivedUserGesture() override;
271 void blinkFeatureUsageReport(const std::set<int>& features) override; 271 void blinkFeatureUsageReport(const std::set<int>& features) override;
272 void mixedContentFound(const WebURL& mainResourceUrl, 272 void mixedContentFound(const WebURL& mainResourceUrl,
273 const WebURL& mixedContentUrl, 273 const WebURL& mixedContentUrl,
274 WebURLRequest::RequestContext, 274 WebURLRequest::RequestContext,
275 bool wasAllowed, 275 bool wasAllowed,
276 bool hadRedirect, 276 bool hadRedirect,
277 const WebSourceLocation&) override; 277 const WebSourceLocation&) override;
278 void clientDroppedNavigation() override;
278 void sendOrientationChangeEvent() override; 279 void sendOrientationChangeEvent() override;
279 WebSandboxFlags effectiveSandboxFlags() const override; 280 WebSandboxFlags effectiveSandboxFlags() const override;
280 void forceSandboxFlags(WebSandboxFlags) override; 281 void forceSandboxFlags(WebSandboxFlags) override;
281 void didCallAddSearchProvider() override; 282 void didCallAddSearchProvider() override;
282 void didCallIsSearchProviderInstalled() override; 283 void didCallIsSearchProviderInstalled() override;
283 void replaceSelection(const WebString&) override; 284 void replaceSelection(const WebString&) override;
284 void requestFind(int identifier, 285 void requestFind(int identifier,
285 const WebString& searchText, 286 const WebString& searchText,
286 const WebFindOptions&) override; 287 const WebFindOptions&) override;
287 bool find(int identifier, 288 bool find(int identifier,
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 506
506 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 507 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
507 WebFrame, 508 WebFrame,
508 frame, 509 frame,
509 frame->isWebLocalFrame(), 510 frame->isWebLocalFrame(),
510 frame.isWebLocalFrame()); 511 frame.isWebLocalFrame());
511 512
512 } // namespace blink 513 } // namespace blink
513 514
514 #endif 515 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698