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

Unified Diff: Source/bindings/v8/DOMWrapperWorld.h

Issue 257803006: Fixing wrong extension ID in Activity Log entries. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: bug fix Created 6 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
« no previous file with comments | « Source/bindings/tests/results/V8TestObject.cpp ('k') | Source/bindings/v8/DOMWrapperWorld.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/DOMWrapperWorld.h
diff --git a/Source/bindings/v8/DOMWrapperWorld.h b/Source/bindings/v8/DOMWrapperWorld.h
index 2a5bd3d805b66db0599a7801d6fc9bc90dc5c681..aa294a1fcfb373780d3aed58c712780487ce999d 100644
--- a/Source/bindings/v8/DOMWrapperWorld.h
+++ b/Source/bindings/v8/DOMWrapperWorld.h
@@ -45,7 +45,6 @@ namespace WebCore {
class DOMDataStore;
class ExecutionContext;
class ScriptController;
-class V8DOMActivityLogger;
enum WorldIdConstants {
MainWorldId = 0,
@@ -113,8 +112,6 @@ public:
int worldId() const { return m_worldId; }
int extensionGroup() const { return m_extensionGroup; }
DOMDataStore& domDataStore() const { return *m_domDataStore; }
- V8DOMActivityLogger* activityLogger() const { return m_activityLogger; }
- void setActivityLogger(V8DOMActivityLogger* activityLogger) { m_activityLogger = activityLogger; }
static void setWorldOfInitializingWindow(DOMWrapperWorld* world)
{
@@ -133,8 +130,6 @@ private:
const int m_worldId;
const int m_extensionGroup;
OwnPtr<DOMDataStore> m_domDataStore;
- // This is owned by a static hash map in V8DOMActivityLogger.
- V8DOMActivityLogger* m_activityLogger;
};
} // namespace WebCore
« no previous file with comments | « Source/bindings/tests/results/V8TestObject.cpp ('k') | Source/bindings/v8/DOMWrapperWorld.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698