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

Unified Diff: third_party/WebKit/Source/web/WebDocument.cpp

Issue 2547753002: [Extensions] Extension Port Ids and Initialization 2.0 (Closed)
Patch Set: Rob's test Created 4 years 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/Source/web/WebDocument.cpp
diff --git a/third_party/WebKit/Source/web/WebDocument.cpp b/third_party/WebKit/Source/web/WebDocument.cpp
index 372bf8db3a2ca247bdc81167d055247be28a030e..f4694433a01789a9a3f473ac76d3031e6370022c 100644
--- a/third_party/WebKit/Source/web/WebDocument.cpp
+++ b/third_party/WebKit/Source/web/WebDocument.cpp
@@ -206,14 +206,6 @@ void WebDocument::watchCSSSelectors(const WebVector<WebString>& webSelectors) {
CSSSelectorWatch::from(*document).watchCSSSelectors(selectors);
}
-bool WebDocument::unloadStartedDoNotUse() const {
- return constUnwrap<Document>()->unloadStarted();
-}
-
-bool WebDocument::processingBeforeUnloadDoNotUse() const {
- return constUnwrap<Document>()->processingBeforeUnload();
-}
-
WebReferrerPolicy WebDocument::referrerPolicy() const {
return static_cast<WebReferrerPolicy>(
constUnwrap<Document>()->getReferrerPolicy());

Powered by Google App Engine
This is Rietveld 408576698