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

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

Issue 2929493003: Move handling of DraggableRegionsChanged notification from "view" to "frame". (Closed)
Patch Set: Removing the CHECK used to find test coverage [found in LaunchWebAuthFlowFunctionTest]. Created 3 years, 6 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 c2e13f4c53e0feab024dbc4bddd286fbc95a871d..e1a173abb86ba42462e9641cf1ca097ffdc27b6d 100644
--- a/third_party/WebKit/public/web/WebFrameClient.h
+++ b/third_party/WebKit/public/web/WebFrameClient.h
@@ -795,10 +795,16 @@ class BLINK_EXPORT WebFrameClient {
}
// Loading --------------------------------------------------------------
+
virtual std::unique_ptr<blink::WebURLLoader> CreateURLLoader() {
NOTREACHED();
return nullptr;
}
+
+ // Other methods --------------------------------------------------------
dcheng 2017/06/07 20:22:35 Nit: let's just call this Draggable regions still,
Łukasz Anforowicz 2017/06/08 16:29:24 Done: - I've moved the declaration into "Geometry
+
+ // Informs the browser that the draggable regions have been updated.
+ virtual void DraggableRegionsChanged() {}
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698