| Index: content/browser/appcache/appcache_host_unittest.cc
|
| diff --git a/content/browser/appcache/appcache_host_unittest.cc b/content/browser/appcache/appcache_host_unittest.cc
|
| index 255bfa9ab5bbe7bfb969aa681d5d6cc4ec7e0785..ee935c1b508961e0a2b56a66e362dae5b07fe04a 100644
|
| --- a/content/browser/appcache/appcache_host_unittest.cc
|
| +++ b/content/browser/appcache/appcache_host_unittest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/bind.h"
|
| #include "base/bind_helpers.h"
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -79,7 +81,7 @@ class AppCacheHostTest : public testing::Test {
|
| }
|
|
|
| int last_host_id_;
|
| - int64 last_cache_id_;
|
| + int64_t last_cache_id_;
|
| AppCacheStatus last_status_;
|
| AppCacheStatus last_status_changed_;
|
| AppCacheEventID last_event_id_;
|
| @@ -98,7 +100,7 @@ class AppCacheHostTest : public testing::Test {
|
| void NotifyStorageModified(storage::QuotaClient::ID client_id,
|
| const GURL& origin,
|
| storage::StorageType type,
|
| - int64 delta) override {}
|
| + int64_t delta) override {}
|
| void SetUsageCacheEnabled(storage::QuotaClient::ID client_id,
|
| const GURL& origin,
|
| storage::StorageType type,
|
|
|