Index: content/browser/speech/google_streaming_remote_engine.cc |
diff --git a/content/browser/speech/google_streaming_remote_engine.cc b/content/browser/speech/google_streaming_remote_engine.cc |
index 88a461a41c71cada6bdba693d9c199d82bf6fb1d..6b78f23e9657a1067542e17e4a7f682209015bcf 100644 |
--- a/content/browser/speech/google_streaming_remote_engine.cc |
+++ b/content/browser/speech/google_streaming_remote_engine.cc |
@@ -563,8 +563,8 @@ std::string GoogleStreamingRemoteEngine::GetAcceptedLanguages() const { |
// TODO(primiano): Is there any utility in the codebase that already does this? |
std::string GoogleStreamingRemoteEngine::GenerateRequestKey() const { |
- const int64 kKeepLowBytes = GG_LONGLONG(0x00000000FFFFFFFF); |
- const int64 kKeepHighBytes = GG_LONGLONG(0xFFFFFFFF00000000); |
+ const int64 kKeepLowBytes = 0x00000000FFFFFFFFLL; |
+ const int64 kKeepHighBytes = 0xFFFFFFFF00000000LL; |
// Just keep the least significant bits of timestamp, in order to reduce |
// probability of collisions. |