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

Unified Diff: base/android/activity_status.h

Issue 14373019: Add base/android/activity_status.cc (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: formatting Created 7 years, 8 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 | « base/android/activity_state_list.h ('k') | base/android/activity_status.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/activity_status.h
diff --git a/base/android/activity_status.h b/base/android/activity_status.h
new file mode 100644
index 0000000000000000000000000000000000000000..8964591cd6e9edaf807581dae34c5a4259266e07
--- /dev/null
+++ b/base/android/activity_status.h
@@ -0,0 +1,99 @@
+// Copyright 2013 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 BASE_ANDROID_ACTIVITY_STATUS_H_
+#define BASE_ANDROID_ACTIVITY_STATUS_H_
+
+#include <jni.h>
+
+#include "base/android/jni_android.h"
+#include "base/basictypes.h"
+#include "base/memory/ref_counted.h"
+#include "base/memory/singleton.h"
+#include "base/observer_list_threadsafe.h"
+
+template <typename T> struct LeakySingletonTraits;
+
+namespace base {
+namespace android {
+
+// Define activity state values like ACTIVITY_STATE_CREATED in a
+// way that ensures they're always the same than their Java counterpart.
+enum ActivityState {
+#define DEFINE_ACTIVITY_STATE(x,y) ACTIVITY_STATE_ ## x = y,
+#include "base/android/activity_state_list.h"
+#undef DEFINE_ACTIVITY_STATE
+};
+
+// A native helper class to listen to activity state changes from
+// any thread.
+//
+// To start listening, create a new instance, passing a callback to a
+// function that takes an ActivityState parameter. To stop listening,
+// simply delete the listener object. The implementation guarantees
+// that the callback will always be called on the same thread than
+// the one that created the listener.
+//
+// Example:
+//
+// void OnActivityStateChange(ActivityState state) {
+// ...
+// }
+//
+// // Start listening.
+// ActivityStatus::Listener* my_listener =
+// new ActivityStatus::Listener(base::Bind(&OnActivityStateChange));
+//
+// ...
+//
+// // Stop listening.
+// delete my_listener
+//
+BASE_EXPORT class ActivityStatus {
+ public:
+ typedef base::Callback<void(ActivityState)> StateChangeCallback;
+
+ class Listener {
+ public:
+ Listener(const StateChangeCallback& callback);
bulach 2013/04/26 12:57:06 nit: explicit
digit1 2013/04/26 13:25:55 Done.
+ ~Listener();
bulach 2013/04/26 12:57:06 nit: add a \n
digit1 2013/04/26 13:25:55 Done.
+ private:
+ friend class ActivityStatus;
+
+ void Notify(ActivityState state) {
+ callback_.Run(state);
bulach 2013/04/26 12:57:06 nit: I think the preference is to just have decl i
digit1 2013/04/26 13:25:55 Done.
+ }
+
+ StateChangeCallback callback_;
+
+ DISALLOW_COPY_AND_ASSIGN(Listener);
+ };
+
+ // NOTE: The Java ActivityStatus is a singleton too.
+ static ActivityStatus* GetInstance();
+
+ // Internal use: must be public to be called from base_jni_registrar.cc
+ static bool RegisterBindings(JNIEnv* env);
+
+ // Internal use only: must be public to be called from JNI.
+ void OnActivityStateChange(ActivityState new_state);
+
+ private:
+ friend struct DefaultSingletonTraits<ActivityStatus>;
+
+ ActivityStatus();
+ ~ActivityStatus();
+
+ void RegisterListener(Listener* listener);
+ void UnregisterListener(Listener* listener);
+
+ scoped_refptr<ObserverListThreadSafe<Listener> > observers_;
+
+ DISALLOW_COPY_AND_ASSIGN(ActivityStatus);
+};
+
+} // namespace android
+} // namespace base
+
+#endif // BASE_ANDROID_ACTIVITY_STATUS_H_
« no previous file with comments | « base/android/activity_state_list.h ('k') | base/android/activity_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698