diff options
author | tfarina <tfarina@chromium.org> | 2015-05-27 15:35:57 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-05-27 22:36:44 +0000 |
commit | 407d5633c7ff64f47ade27789eaef292c14f8296 (patch) | |
tree | 4ac81cd903c960e699b3beb9d6ba9cfccf42f79a /components/search_provider_logos/logo_common.cc | |
parent | c02d25e5f9ff9e82f57f7e4c06c0692db7ea5dcc (diff) | |
download | chromium_src-407d5633c7ff64f47ade27789eaef292c14f8296.zip chromium_src-407d5633c7ff64f47ade27789eaef292c14f8296.tar.gz chromium_src-407d5633c7ff64f47ade27789eaef292c14f8296.tar.bz2 |
components: Remove the remaining usage of GG_(U)INTn_C macros.
According to comment in base/port.h, in Chromium, we force-define
__STDC_CONSTANT_MACROS, so we can just use the regular (U)INTn_C
macros from <stdint.h>.
BUG=138542
TEST=components_unittests, components_browsertests
R=isherman@chromium.org,newt@chromium.org
Review URL: https://codereview.chromium.org/1161683004
Cr-Commit-Position: refs/heads/master@{#331673}
Diffstat (limited to 'components/search_provider_logos/logo_common.cc')
-rw-r--r-- | components/search_provider_logos/logo_common.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/components/search_provider_logos/logo_common.cc b/components/search_provider_logos/logo_common.cc index 322aed5..f88cfdb 100644 --- a/components/search_provider_logos/logo_common.cc +++ b/components/search_provider_logos/logo_common.cc @@ -4,9 +4,11 @@ #include "components/search_provider_logos/logo_common.h" +#include <stdint.h> + namespace search_provider_logos { -const int64 kMaxTimeToLiveMS = GG_INT64_C(30 * 24 * 60 * 60 * 1000); // 30 days +const int64_t kMaxTimeToLiveMS = INT64_C(30 * 24 * 60 * 60 * 1000); // 30 days LogoMetadata::LogoMetadata() : can_show_after_expiration(false) {} LogoMetadata::~LogoMetadata() {} |