| Index: chrome/browser/in_process_webkit/storage_namespace.h
|
| ===================================================================
|
| --- chrome/browser/in_process_webkit/storage_namespace.h (revision 27849)
|
| +++ chrome/browser/in_process_webkit/storage_namespace.h (working copy)
|
| @@ -31,7 +31,11 @@
|
| StorageNamespace* Copy();
|
| void Close();
|
|
|
| + const DOMStorageContext* dom_storage_context() const {
|
| + return dom_storage_context_;
|
| + }
|
| int64 id() const { return id_; }
|
| + DOMStorageType dom_storage_type() const { return dom_storage_type_; }
|
|
|
| private:
|
| // Called by the static factory methods above.
|
| @@ -53,7 +57,7 @@
|
| int64 id_;
|
|
|
| // SessionStorage vs. LocalStorage.
|
| - const DOMStorageType storage_type_;
|
| + const DOMStorageType dom_storage_type_;
|
|
|
| DISALLOW_IMPLICIT_CONSTRUCTORS(StorageNamespace);
|
| };
|
|
|