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

Unified Diff: base/android/application_status_listener.cc

Issue 1647803004: Move base to DEPS (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 4 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
« no previous file with comments | « base/android/application_status_listener.h ('k') | base/android/application_status_listener_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/android/application_status_listener.cc
diff --git a/base/android/application_status_listener.cc b/base/android/application_status_listener.cc
deleted file mode 100644
index 3e6fbf833ceb98e8bca020750ce078b34eba34b8..0000000000000000000000000000000000000000
--- a/base/android/application_status_listener.cc
+++ /dev/null
@@ -1,76 +0,0 @@
-// Copyright 2014 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.
-
-#include "base/android/application_status_listener.h"
-
-#include <jni.h>
-
-#include "base/lazy_instance.h"
-#include "base/observer_list_threadsafe.h"
-#include "jni/ApplicationStatus_jni.h"
-
-namespace base {
-namespace android {
-
-namespace {
-
-struct LeakyLazyObserverListTraits :
- base::internal::LeakyLazyInstanceTraits<
- ObserverListThreadSafe<ApplicationStatusListener> > {
- static ObserverListThreadSafe<ApplicationStatusListener>*
- New(void* instance) {
- ObserverListThreadSafe<ApplicationStatusListener>* ret =
- base::internal::LeakyLazyInstanceTraits<ObserverListThreadSafe<
- ApplicationStatusListener>>::New(instance);
- // Leaky.
- ret->AddRef();
- return ret;
- }
-};
-
-LazyInstance<ObserverListThreadSafe<ApplicationStatusListener>,
- LeakyLazyObserverListTraits> g_observers =
- LAZY_INSTANCE_INITIALIZER;
-
-} // namespace
-
-ApplicationStatusListener::ApplicationStatusListener(
- const ApplicationStatusListener::ApplicationStateChangeCallback& callback)
- : callback_(callback) {
- DCHECK(!callback_.is_null());
- g_observers.Get().AddObserver(this);
-
- Java_ApplicationStatus_registerThreadSafeNativeApplicationStateListener(
- AttachCurrentThread());
-}
-
-ApplicationStatusListener::~ApplicationStatusListener() {
- g_observers.Get().RemoveObserver(this);
-}
-
-void ApplicationStatusListener::Notify(ApplicationState state) {
- callback_.Run(state);
-}
-
-// static
-bool ApplicationStatusListener::RegisterBindings(JNIEnv* env) {
- return RegisterNativesImpl(env);
-}
-
-// static
-void ApplicationStatusListener::NotifyApplicationStateChange(
- ApplicationState state) {
- g_observers.Get().Notify(FROM_HERE, &ApplicationStatusListener::Notify,
- state);
-}
-
-static void OnApplicationStateChange(JNIEnv* env,
- jclass clazz,
- jint new_state) {
- ApplicationState application_state = static_cast<ApplicationState>(new_state);
- ApplicationStatusListener::NotifyApplicationStateChange(application_state);
-}
-
-} // namespace android
-} // namespace base
« no previous file with comments | « base/android/application_status_listener.h ('k') | base/android/application_status_listener_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698