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

Unified Diff: Source/core/dom/ExecutionContext.h

Issue 777483004: Bind Window focus ability to the ExecutionContext instead of the process. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sw_client_focus
Patch Set: Created 6 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: Source/core/dom/ExecutionContext.h
diff --git a/Source/core/dom/ExecutionContext.h b/Source/core/dom/ExecutionContext.h
index 6decfb99508f6db8a091a40f09768bd144d571bd..a77fafca67e6b2dfea922fa08727a444b702ae9d 100644
--- a/Source/core/dom/ExecutionContext.h
+++ b/Source/core/dom/ExecutionContext.h
@@ -133,6 +133,10 @@ public:
virtual EventTarget* errorEventTarget() = 0;
virtual EventQueue* eventQueue() const = 0;
+ void allowWindowFocus();
+ void consumeWindowFocus();
+ bool isWindowFocusAllowed() const;
+
protected:
ExecutionContext();
virtual ~ExecutionContext();
@@ -177,6 +181,12 @@ private:
// ExecutionContext's members (notably m_timeouts) is called before they are destructed,
// m_lifecycleNotifer should be placed *after* such members.
OwnPtr<ContextLifecycleNotifier> m_lifecycleNotifier;
+
+ // Counter that keeps track of how many window focus calls are allowed for
+ // this ExecutionContext. Callers are expected to call |allowWindowFocus()|
+ // and |consumeWindowFocus()| in order to increment and decrement the
+ // counter.
+ int m_windowFocusTokens;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698