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

Side by Side Diff: chrome/browser/android/background_sync_launcher_android.h

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
OLDNEW
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 #ifndef CHROME_BROWSER_ANDROID_BACKGROUND_SYNC_LAUNCHER_ANDROID_H_ 5 #ifndef CHROME_BROWSER_ANDROID_BACKGROUND_SYNC_LAUNCHER_ANDROID_H_
6 #define CHROME_BROWSER_ANDROID_BACKGROUND_SYNC_LAUNCHER_ANDROID_H_ 6 #define CHROME_BROWSER_ANDROID_BACKGROUND_SYNC_LAUNCHER_ANDROID_H_
7 7
8 #include <stdint.h>
9
8 #include <set> 10 #include <set>
9 11
10 #include "base/android/jni_android.h" 12 #include "base/android/jni_android.h"
11 #include "base/lazy_instance.h" 13 #include "base/lazy_instance.h"
12 #include "base/macros.h" 14 #include "base/macros.h"
13 15
14 namespace content { 16 namespace content {
15 17
16 class BackgroundSyncManager; 18 class BackgroundSyncManager;
17 19
(...skipping 20 matching lines...) Expand all
38 ~BackgroundSyncLauncherAndroid(); 40 ~BackgroundSyncLauncherAndroid();
39 41
40 void LaunchBrowserIfStoppedImpl(bool launch_when_next_online, 42 void LaunchBrowserIfStoppedImpl(bool launch_when_next_online,
41 int64_t min_delay_ms); 43 int64_t min_delay_ms);
42 44
43 base::android::ScopedJavaGlobalRef<jobject> java_launcher_; 45 base::android::ScopedJavaGlobalRef<jobject> java_launcher_;
44 DISALLOW_COPY_AND_ASSIGN(BackgroundSyncLauncherAndroid); 46 DISALLOW_COPY_AND_ASSIGN(BackgroundSyncLauncherAndroid);
45 }; 47 };
46 48
47 #endif // CHROME_BROWSER_ANDROID_BACKGROUND_SYNC_LAUNCHER_ANDROID_H_ 49 #endif // CHROME_BROWSER_ANDROID_BACKGROUND_SYNC_LAUNCHER_ANDROID_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698