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

Unified Diff: Source/web/WebDOMActivityLogger.cpp

Issue 315373002: Cleaning WebDOMActivityLogger interface. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix Created 6 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
« no previous file with comments | « Source/bindings/v8/V8WindowShell.cpp ('k') | public/web/WebDOMActivityLogger.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebDOMActivityLogger.cpp
diff --git a/Source/web/WebDOMActivityLogger.cpp b/Source/web/WebDOMActivityLogger.cpp
index 523c943f05acb5390793aac675221c789453ded5..d5745d8afd0ccde75fe21087ca9c054674bf0162 100644
--- a/Source/web/WebDOMActivityLogger.cpp
+++ b/Source/web/WebDOMActivityLogger.cpp
@@ -98,17 +98,4 @@ void setDOMActivityLogger(int worldId, const WebString& extensionId, WebDOMActiv
V8DOMActivityLogger::setActivityLogger(worldId, extensionId, adoptPtr(new DOMActivityLoggerContainer(adoptPtr(logger))));
}
-// FIXME: remove the following two methods after modifying Chrome to use the
-// above ones.
-bool hasDOMActivityLogger(int worldId)
-{
- return V8DOMActivityLogger::activityLogger(worldId, WebString());
-}
-
-void setDOMActivityLogger(int worldId, WebDOMActivityLogger* logger)
-{
- ASSERT(logger);
- V8DOMActivityLogger::setActivityLogger(worldId, WebString(), adoptPtr(new DOMActivityLoggerContainer(adoptPtr(logger))));
-}
-
} // namespace blink
« no previous file with comments | « Source/bindings/v8/V8WindowShell.cpp ('k') | public/web/WebDOMActivityLogger.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698