| Index: content/renderer/dom_storage/dom_storage_dispatcher.h
|
| diff --git a/content/renderer/dom_storage/dom_storage_dispatcher.h b/content/renderer/dom_storage/dom_storage_dispatcher.h
|
| index 0e980a64347f684d060f91d57d2123b830401656..0ff96447b59ed7f0c6d9236e788a411b7b34f841 100644
|
| --- a/content/renderer/dom_storage/dom_storage_dispatcher.h
|
| +++ b/content/renderer/dom_storage/dom_storage_dispatcher.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_
|
| #define CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| #include "base/memory/ref_counted.h"
|
|
|
| class GURL;
|
| @@ -31,7 +32,7 @@ class DomStorageDispatcher {
|
|
|
| // Each call to open should be balanced with a call to close.
|
| scoped_refptr<DOMStorageCachedArea> OpenCachedArea(int connection_id,
|
| - int64 namespace_id,
|
| + int64_t namespace_id,
|
| const GURL& origin);
|
| void CloseCachedArea(int connection_id, DOMStorageCachedArea* area);
|
|
|
|
|