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

Unified Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 1973133002: ✀ Remove postMessage plumbing for swappedout:// ✀ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase to use std::move instead of release(). Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/public/web/WebFrameClient.h
diff --git a/third_party/WebKit/public/web/WebFrameClient.h b/third_party/WebKit/public/web/WebFrameClient.h
index 5f784502a7c1bf932afe2738f2a0193112ea0f8b..7bf90c6b7fc0a20723a5a0e7b2fd524196bd9021 100644
--- a/third_party/WebKit/public/web/WebFrameClient.h
+++ b/third_party/WebKit/public/web/WebFrameClient.h
@@ -581,23 +581,15 @@ public:
virtual WebMIDIClient* webMIDIClient() { return 0; }
-
- // Messages ------------------------------------------------------
-
- // Notifies the embedder that a postMessage was issued on this frame, and
- // gives the embedder a chance to handle it instead of WebKit. Returns true
- // if the embedder handled it.
- virtual bool willCheckAndDispatchMessageEvent(
- WebLocalFrame* sourceFrame,
- WebFrame* targetFrame,
- WebSecurityOrigin target,
- WebDOMMessageEvent event) { return false; }
+ // User agent ------------------------------------------------------
// Asks the embedder if a specific user agent should be used. Non-empty
// strings indicate an override should be used. Otherwise,
// Platform::current()->userAgent() will be called to provide one.
virtual WebString userAgentOverride() { return WebString(); }
+ // Do not track ----------------------------------------------------
+
// Asks the embedder what value the network stack will send for the DNT
// header. An empty string indicates that no DNT header will be send.
virtual WebString doNotTrackValue() { return WebString(); }
« no previous file with comments | « third_party/WebKit/Source/web/tests/FrameTestHelpers.h ('k') | third_party/WebKit/public/web/WebRemoteFrameClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698