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

Unified Diff: chrome/browser/chromeos/power/extension_event_observer.h

Issue 823703004: Tracking push events for lucid sleep (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Observers are better. Now with tests! Created 5 years, 11 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: chrome/browser/chromeos/power/extension_event_observer.h
diff --git a/chrome/browser/chromeos/power/extension_event_observer.h b/chrome/browser/chromeos/power/extension_event_observer.h
new file mode 100644
index 0000000000000000000000000000000000000000..b2470bc013906ee28dff6bf8ef35573b54fc2fd9
--- /dev/null
+++ b/chrome/browser/chromeos/power/extension_event_observer.h
@@ -0,0 +1,135 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_CHROMEOS_POWER_EXTENSION_EVENT_OBSERVER_H_
+#define CHROME_BROWSER_CHROMEOS_POWER_EXTENSION_EVENT_OBSERVER_H_
+
+#include <set>
+#include <string>
+
+#include "base/callback.h"
+#include "base/cancelable_callback.h"
+#include "base/containers/scoped_ptr_hash_map.h"
+#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
+#include "base/memory/weak_ptr.h"
+#include "base/time/time.h"
+#include "chromeos/dbus/power_manager_client.h"
+#include "content/public/browser/notification_details.h"
+#include "content/public/browser/notification_observer.h"
+#include "content/public/browser/notification_registrar.h"
+#include "content/public/browser/notification_source.h"
+#include "extensions/browser/extension_host_observer.h"
+#include "extensions/browser/process_manager_observer.h"
+
+class Profile;
+
+namespace extensions {
+class ExtensionHost;
+}
+
+namespace chromeos {
+
+// This class listens for extension events that should potentially keep the
+// system awake while they are being processed. Examples include push messages
+// that arrive from Google's GCM servers and network requests ininitiated by
Daniel Erat 2015/01/13 23:49:10 s/ininitiated/initiated/
Chirantan Ekbote 2015/01/15 05:06:35 Done.
+// extensions while processing the push messages. This class is owned by
+// WakeOnWifiManager.
+class ExtensionEventObserver : public content::NotificationObserver,
+ public extensions::ProcessManagerObserver,
+ public extensions::ExtensionHostObserver,
+ public PowerManagerClient::Observer {
+ public:
+ class TestApi {
+ public:
+ ~TestApi();
+
+ // Runs |suspend_readiness_callback_| if it is non-null and then resets it.
+ // Returns true iff it actually ran the callback.
+ bool MaybeRunSuspendReadinessCallback();
+
+ // Returns true if the ExtensionEventObserver will delay suspend attempts
+ // for |host| if host has pending push messages or network requests.
+ bool WillDelaySuspendForExtensionHost(extensions::ExtensionHost* host);
+
+ private:
+ friend class ExtensionEventObserver;
+
+ explicit TestApi(base::WeakPtr<ExtensionEventObserver> parent);
+
+ base::WeakPtr<ExtensionEventObserver> parent_;
+
+ DISALLOW_COPY_AND_ASSIGN(TestApi);
+ };
+
+ ExtensionEventObserver();
+ ~ExtensionEventObserver() override;
+
+ scoped_ptr<TestApi> GetApiForTesting();
Daniel Erat 2015/01/13 23:49:10 rename to CreateTestApi to make it clearer that ea
Chirantan Ekbote 2015/01/15 05:06:35 Done.
+
+ // Called by the WakeOnWifiManager to determine if the ExtensionEventObserver
+ // should or should not delay the system suspend.
+ void ShouldDelaySuspend(bool should_delay);
Daniel Erat 2015/01/13 23:49:10 SetShouldDelaySuspend()? the current name makes it
Chirantan Ekbote 2015/01/15 05:06:35 Done.
+
+ // content::NotificationObserver override.
+ void Observe(int type,
+ const content::NotificationSource& source,
+ const content::NotificationDetails& details) override;
+
+ // extensions::ProcessManagerObserver overrides.
+ void OnBackgroundHostCreated(extensions::ExtensionHost* host) override;
+
+ // extensions::ExtensionHostObserver overrides.
+ void OnExtensionHostDestroyed(const extensions::ExtensionHost* host) override;
+ void OnExtensionMessageDispatched(const extensions::ExtensionHost* host,
+ const std::string& event_name,
+ int message_id) override;
+ void OnExtensionMessageAcked(const extensions::ExtensionHost* host,
+ int message_id) override;
+ void OnNetworkRequestStarted(const extensions::ExtensionHost* host,
+ uint64 request_id) override;
+ void OnNetworkRequestDone(const extensions::ExtensionHost* host,
+ uint64 request_id) override;
+
+ // PowerManagerClient::Observer overrides.
+ void SuspendImminent() override;
+ void DarkSuspendImminent() override;
+ void SuspendDone(const base::TimeDelta& duration) override;
+
+ private:
+ friend class TestApi;
+
+ // Called when a new profile is created or destroyed.
+ void OnProfileAdded(Profile* profile);
+ void OnProfileDestroyed(Profile* profile);
+
+ // Called when the system is about to perform a regular suspend or a dark
+ // suspend.
+ void OnSuspendImminent(bool dark_suspend);
+
+ // Maybe report readiness to suspend to the PowerManagerClient.
Daniel Erat 2015/01/13 23:49:10 nit: explain what determines whether it's reported
Chirantan Ekbote 2015/01/15 05:06:35 Done.
+ void MaybeReportSuspendReadiness();
+
+ struct KeepaliveSources;
+ base::ScopedPtrHashMap<const extensions::ExtensionHost*, KeepaliveSources>
+ keepalive_sources_;
+
+ std::set<Profile*> active_profiles_;
+
+ bool should_delay_suspend_;
+ bool suspend_is_pending_;
+ int suspend_keepalive_count_;
+ base::Closure power_manager_callback_;
+ base::CancelableClosure suspend_readiness_callback_;
+
+ content::NotificationRegistrar registrar_;
+
+ base::WeakPtrFactory<ExtensionEventObserver> weak_factory_;
+
+ DISALLOW_COPY_AND_ASSIGN(ExtensionEventObserver);
+};
+
+} // namespace chromeos
+
+#endif // CHROME_BROWSER_CHROMEOS_POWER_EXTENSION_EVENT_OBSERVER_H_

Powered by Google App Engine
This is Rietveld 408576698