| Index: third_party/WebKit/public/platform/WebStorageNamespace.h
|
| diff --git a/third_party/WebKit/public/platform/WebStorageNamespace.h b/third_party/WebKit/public/platform/WebStorageNamespace.h
|
| index ecb309ed8bbea5e54fb5c4a8f8baca92e0327d81..85018d2f9422658e30fe408033392d0cdfd2d12f 100644
|
| --- a/third_party/WebKit/public/platform/WebStorageNamespace.h
|
| +++ b/third_party/WebKit/public/platform/WebStorageNamespace.h
|
| @@ -38,16 +38,18 @@ namespace blink {
|
| class WebStorageArea;
|
| class WebString;
|
|
|
| -// WebStorageNamespace represents a collection of StorageAreas. Typically, you'll have
|
| -// multiple StorageNamespaces to represent the SessionStorage for each tab and a single
|
| -// StorageNamespace to represent LocalStorage for the entire browser.
|
| +// WebStorageNamespace represents a collection of StorageAreas. Typically,
|
| +// you'll have multiple StorageNamespaces to represent the SessionStorage for
|
| +// each tab and a single StorageNamespace to represent LocalStorage for the
|
| +// entire browser.
|
| class WebStorageNamespace {
|
| public:
|
| virtual ~WebStorageNamespace() {}
|
|
|
| - // Create a new WebStorageArea object. Two subsequent calls with the same origin
|
| - // will return two different WebStorageArea objects that share the same backing store.
|
| - // You should call delete on the returned object when you're finished.
|
| + // Create a new WebStorageArea object. Two subsequent calls with the same
|
| + // origin will return two different WebStorageArea objects that share the same
|
| + // backing store. You should call delete on the returned object when you're
|
| + // finished.
|
| virtual WebStorageArea* createStorageArea(const WebString& origin) = 0;
|
|
|
| // Returns true of the two instances represent the same storage namespace.
|
|
|