Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(613)

Unified Diff: third_party/WebKit/public/platform/WebStorageNamespace.h

Issue 2387113002: reflow comments in public/platform/ (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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.

Powered by Google App Engine
This is Rietveld 408576698