| Index: chrome/browser/android/cookies/cookies_fetcher.h
|
| diff --git a/chrome/browser/android/cookies/cookies_fetcher.h b/chrome/browser/android/cookies/cookies_fetcher.h
|
| index 16ad9d8a3f5c054af847a64074382a424f542d3f..32cf2045a5f27e18755ae399ce499468449c7d9c 100644
|
| --- a/chrome/browser/android/cookies/cookies_fetcher.h
|
| +++ b/chrome/browser/android/cookies/cookies_fetcher.h
|
| @@ -5,9 +5,11 @@
|
| #ifndef CHROME_BROWSER_ANDROID_COOKIES_COOKIES_FETCHER_H_
|
| #define CHROME_BROWSER_ANDROID_COOKIES_COOKIES_FETCHER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/android/jni_weak_ref.h"
|
| #include "base/android/scoped_java_ref.h"
|
| -#include "base/basictypes.h"
|
| +#include "base/macros.h"
|
| #include "net/cookies/canonical_cookie.h"
|
| #include "net/url_request/url_request_context_getter.h"
|
|
|
| @@ -43,9 +45,9 @@ class CookiesFetcher {
|
| const base::android::JavaParamRef<jstring>& value,
|
| const base::android::JavaParamRef<jstring>& domain,
|
| const base::android::JavaParamRef<jstring>& path,
|
| - int64 creation,
|
| - int64 expiration,
|
| - int64 last_access,
|
| + int64_t creation,
|
| + int64_t expiration,
|
| + int64_t last_access,
|
| bool secure,
|
| bool httponly,
|
| bool firstpartyonly,
|
|
|