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

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

Issue 2735183003: PlzNavigate: stop navigations when opening a document for write (Closed)
Patch Set: Rebase 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 isLoading() const override; 268 bool isLoading() const override;
269 bool isNavigationScheduledWithin(double interval) const override; 269 bool isNavigationScheduledWithin(double interval) const override;
270 void setCommittedFirstRealLoad() override; 270 void setCommittedFirstRealLoad() override;
271 void setHasReceivedUserGesture() override; 271 void setHasReceivedUserGesture() override;
272 void blinkFeatureUsageReport(const std::set<int>& features) override; 272 void blinkFeatureUsageReport(const std::set<int>& features) override;
273 void mixedContentFound(const WebURL& mainResourceUrl, 273 void mixedContentFound(const WebURL& mainResourceUrl,
274 const WebURL& mixedContentUrl, 274 const WebURL& mixedContentUrl,
275 WebURLRequest::RequestContext, 275 WebURLRequest::RequestContext,
276 bool wasAllowed, 276 bool wasAllowed,
277 bool hadRedirect) override; 277 bool hadRedirect) 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 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
506 507
507 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 508 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
508 WebFrame, 509 WebFrame,
509 frame, 510 frame,
510 frame->isWebLocalFrame(), 511 frame->isWebLocalFrame(),
511 frame.isWebLocalFrame()); 512 frame.isWebLocalFrame());
512 513
513 } // namespace blink 514 } // namespace blink
514 515
515 #endif 516 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698