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

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: Fix build 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 86d80b8040486dbf5de25d4fe56a063e3c0aabfc..3d02391dd8d36eb9293947fc6e3e5d6a6088ce4c 100644
--- a/third_party/WebKit/public/web/WebFrameClient.h
+++ b/third_party/WebKit/public/web/WebFrameClient.h
@@ -589,22 +589,16 @@ 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(); }

Powered by Google App Engine
This is Rietveld 408576698