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

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: Minor changes from nasko@'s comments Created 3 years, 10 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 bool maybeRenderFallbackContent(const WebURLError&) const override; 262 bool maybeRenderFallbackContent(const WebURLError&) const override;
263 bool isLoading() const override; 263 bool isLoading() const override;
264 bool isNavigationScheduledWithin(double interval) const override; 264 bool isNavigationScheduledWithin(double interval) const override;
265 void setCommittedFirstRealLoad() override; 265 void setCommittedFirstRealLoad() override;
266 void setHasReceivedUserGesture() override; 266 void setHasReceivedUserGesture() override;
267 void blinkFeatureUsageReport(const std::set<int>& features) override;
268 void mixedContentFound(const WebURL& mainResourceUrl,
269 const WebURL& mixedContentUrl,
270 WebURLRequest::RequestContext,
271 bool wasAllowed,
272 bool hadRedirect) override;
267 void sendOrientationChangeEvent() override; 273 void sendOrientationChangeEvent() override;
268 WebSandboxFlags effectiveSandboxFlags() const override; 274 WebSandboxFlags effectiveSandboxFlags() const override;
269 void forceSandboxFlags(WebSandboxFlags) override; 275 void forceSandboxFlags(WebSandboxFlags) override;
270 void didCallAddSearchProvider() override; 276 void didCallAddSearchProvider() override;
271 void didCallIsSearchProviderInstalled() override; 277 void didCallIsSearchProviderInstalled() override;
272 void replaceSelection(const WebString&) override; 278 void replaceSelection(const WebString&) override;
273 void requestFind(int identifier, 279 void requestFind(int identifier,
274 const WebString& searchText, 280 const WebString& searchText,
275 const WebFindOptions&) override; 281 const WebFindOptions&) override;
276 bool find(int identifier, 282 bool find(int identifier,
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
495 501
496 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 502 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
497 WebFrame, 503 WebFrame,
498 frame, 504 frame,
499 frame->isWebLocalFrame(), 505 frame->isWebLocalFrame(),
500 frame.isWebLocalFrame()); 506 frame.isWebLocalFrame());
501 507
502 } // namespace blink 508 } // namespace blink
503 509
504 #endif 510 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/MixedContentCheckerTest.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698