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

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

Issue 1905033002: PlzNavigate: Move navigation-level mixed content checks to the browser. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@console-security-message
Patch Set: Rebase after 3 spin off CLs landed. Created 3 years, 12 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 void loadData(const WebData&, 252 void loadData(const WebData&,
253 const WebString& mimeType, 253 const WebString& mimeType,
254 const WebString& textEncoding, 254 const WebString& textEncoding,
255 const WebURL& baseURL, 255 const WebURL& baseURL,
256 const WebURL& unreachableURL, 256 const WebURL& unreachableURL,
257 bool replace, 257 bool replace,
258 WebFrameLoadType, 258 WebFrameLoadType,
259 const WebHistoryItem&, 259 const WebHistoryItem&,
260 WebHistoryLoadType, 260 WebHistoryLoadType,
261 bool isClientRedirect) override; 261 bool isClientRedirect) override;
262 void mixedContentUpdateFromBrowser(const std::set<int>& features,
263 bool mixedContentWasFound,
264 const WebURL& mixedContentUrl,
265 bool mixedContentHadRedirect) override;
262 bool maybeRenderFallbackContent(const WebURLError&) const override; 266 bool maybeRenderFallbackContent(const WebURLError&) const override;
263 bool isLoading() const override; 267 bool isLoading() const override;
264 bool isNavigationScheduledWithin(double interval) const override; 268 bool isNavigationScheduledWithin(double interval) const override;
265 void setCommittedFirstRealLoad() override; 269 void setCommittedFirstRealLoad() override;
266 void setHasReceivedUserGesture() override; 270 void setHasReceivedUserGesture() override;
267 void sendOrientationChangeEvent() override; 271 void sendOrientationChangeEvent() override;
268 WebSandboxFlags effectiveSandboxFlags() const override; 272 WebSandboxFlags effectiveSandboxFlags() const override;
269 void forceSandboxFlags(WebSandboxFlags) override; 273 void forceSandboxFlags(WebSandboxFlags) override;
270 void didCallAddSearchProvider() override; 274 void didCallAddSearchProvider() override;
271 void didCallIsSearchProviderInstalled() override; 275 void didCallIsSearchProviderInstalled() override;
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
477 481
478 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 482 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
479 WebFrame, 483 WebFrame,
480 frame, 484 frame,
481 frame->isWebLocalFrame(), 485 frame->isWebLocalFrame(),
482 frame.isWebLocalFrame()); 486 frame.isWebLocalFrame());
483 487
484 } // namespace blink 488 } // namespace blink
485 489
486 #endif 490 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698