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

Unified Diff: content/browser/dom_storage/session_storage_namespace_impl.h

Issue 11269010: Move fileapi and dom_storage directories into the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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: content/browser/dom_storage/session_storage_namespace_impl.h
===================================================================
--- content/browser/dom_storage/session_storage_namespace_impl.h (revision 163834)
+++ content/browser/dom_storage/session_storage_namespace_impl.h (working copy)
@@ -10,14 +10,15 @@
#include "content/common/content_export.h"
#include "content/public/browser/session_storage_namespace.h"
-class DOMStorageContextImpl;
-
namespace dom_storage {
class DomStorageSession;
}
+namespace content {
+class DOMStorageContextImpl;
+
class SessionStorageNamespaceImpl
- : NON_EXPORTED_BASE(public content::SessionStorageNamespace) {
+ : NON_EXPORTED_BASE(public SessionStorageNamespace) {
public:
// Constructs a |SessionStorageNamespaceImpl| and allocates new IDs for it.
//
@@ -35,7 +36,7 @@
SessionStorageNamespaceImpl(DOMStorageContextImpl* context,
const std::string& persistent_id);
- // content::SessionStorageNamespace implementation.
+ // SessionStorageNamespace implementation.
virtual int64 id() const OVERRIDE;
virtual const std::string& persistent_id() const OVERRIDE;
virtual void SetShouldPersist(bool should_persist) OVERRIDE;
@@ -53,4 +54,6 @@
DISALLOW_COPY_AND_ASSIGN(SessionStorageNamespaceImpl);
};
+} // namespace content
+
#endif // CONTENT_BROWSER_DOM_STORAGE_SESSION_STORAGE_NAMESPACE_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698