| Index: content/browser/dom_storage/session_storage_database.h
|
| diff --git a/content/browser/dom_storage/session_storage_database.h b/content/browser/dom_storage/session_storage_database.h
|
| index 4260e4adb567600c6c8a42c47e41b802d876bd2f..d4e80e4353eda2fe4230865798f5e821db83f693 100644
|
| --- a/content/browser/dom_storage/session_storage_database.h
|
| +++ b/content/browser/dom_storage/session_storage_database.h
|
| @@ -5,10 +5,13 @@
|
| #ifndef CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_DATABASE_H_
|
| #define CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_DATABASE_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <map>
|
| #include <string>
|
|
|
| #include "base/files/file_path.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/synchronization/lock.h"
|
| @@ -158,7 +161,7 @@ class CONTENT_EXPORT SessionStorageDatabase :
|
| const DOMStorageValuesMap& values,
|
| leveldb::WriteBatch* batch);
|
|
|
| - bool GetMapRefCount(const std::string& map_id, int64* ref_count);
|
| + bool GetMapRefCount(const std::string& map_id, int64_t* ref_count);
|
| bool IncreaseMapRefCount(const std::string& map_id,
|
| leveldb::WriteBatch* batch);
|
| // Decreases the ref count of a map by |decrease|. If the ref count goes to 0,
|
|
|