| Index: components/suggestions/suggestions_service.h
|
| diff --git a/components/suggestions/suggestions_service.h b/components/suggestions/suggestions_service.h
|
| index 5a9b6d7307ef16faa20737c2fc8f0d1bfe2dff38..7f0dd211df9239a170bc5bd3060b1a92d315abd3 100644
|
| --- a/components/suggestions/suggestions_service.h
|
| +++ b/components/suggestions/suggestions_service.h
|
| @@ -5,13 +5,15 @@
|
| #ifndef COMPONENTS_SUGGESTIONS_SUGGESTIONS_SERVICE_H_
|
| #define COMPONENTS_SUGGESTIONS_SUGGESTIONS_SERVICE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
| #include <vector>
|
|
|
| -#include "base/basictypes.h"
|
| #include "base/callback.h"
|
| #include "base/cancelable_callback.h"
|
| #include "base/gtest_prod_util.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| #include "base/threading/thread_checker.h"
|
| @@ -135,7 +137,7 @@ class SuggestionsService : public KeyedService, public net::URLFetcherDelegate {
|
|
|
| // Sets default timestamp for suggestions which do not have expiry timestamp.
|
| void SetDefaultExpiryTimestamp(SuggestionsProfile* suggestions,
|
| - int64 timestamp_usec);
|
| + int64_t timestamp_usec);
|
|
|
| // Issues a network request if there isn't already one happening.
|
| void IssueRequestIfNoneOngoing(const GURL& url);
|
|
|