| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/browser/android/background_sync_launcher_android.h" | 5 #include "chrome/browser/android/background_sync_launcher_android.h" |
| 6 | 6 |
| 7 #include "base/android/context_utils.h" | 7 #include "base/android/context_utils.h" |
| 8 #include "content/public/browser/browser_thread.h" | 8 #include "content/public/browser/browser_thread.h" |
| 9 #include "jni/BackgroundSyncLauncher_jni.h" | 9 #include "jni/BackgroundSyncLauncher_jni.h" |
| 10 | 10 |
| 11 using content::BrowserThread; | 11 using content::BrowserThread; |
| 12 | 12 |
| 13 namespace { | 13 namespace { |
| 14 base::LazyInstance<BackgroundSyncLauncherAndroid> g_background_sync_launcher = | 14 base::LazyInstance<BackgroundSyncLauncherAndroid>::DestructorAtExit |
| 15 LAZY_INSTANCE_INITIALIZER; | 15 g_background_sync_launcher = LAZY_INSTANCE_INITIALIZER; |
| 16 | 16 |
| 17 // Disables the Play Services version check for testing on Chromium build bots. | 17 // Disables the Play Services version check for testing on Chromium build bots. |
| 18 // TODO(iclelland): Remove this once the bots have their play services package | 18 // TODO(iclelland): Remove this once the bots have their play services package |
| 19 // updated before every test run. (https://crbug.com/514449) | 19 // updated before every test run. (https://crbug.com/514449) |
| 20 bool disable_play_services_version_check_for_tests = false; | 20 bool disable_play_services_version_check_for_tests = false; |
| 21 | 21 |
| 22 } // namespace | 22 } // namespace |
| 23 | 23 |
| 24 // static | 24 // static |
| 25 BackgroundSyncLauncherAndroid* BackgroundSyncLauncherAndroid::Get() { | 25 BackgroundSyncLauncherAndroid* BackgroundSyncLauncherAndroid::Get() { |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 java_launcher_.Reset(Java_BackgroundSyncLauncher_create( | 72 java_launcher_.Reset(Java_BackgroundSyncLauncher_create( |
| 73 env, base::android::GetApplicationContext())); | 73 env, base::android::GetApplicationContext())); |
| 74 } | 74 } |
| 75 | 75 |
| 76 BackgroundSyncLauncherAndroid::~BackgroundSyncLauncherAndroid() { | 76 BackgroundSyncLauncherAndroid::~BackgroundSyncLauncherAndroid() { |
| 77 DCHECK_CURRENTLY_ON(BrowserThread::UI); | 77 DCHECK_CURRENTLY_ON(BrowserThread::UI); |
| 78 | 78 |
| 79 JNIEnv* env = base::android::AttachCurrentThread(); | 79 JNIEnv* env = base::android::AttachCurrentThread(); |
| 80 Java_BackgroundSyncLauncher_destroy(env, java_launcher_); | 80 Java_BackgroundSyncLauncher_destroy(env, java_launcher_); |
| 81 } | 81 } |
| OLD | NEW |