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

Unified Diff: content/renderer/dom_storage/dom_storage_dispatcher.h

Issue 22297005: Move webkit/{browser,common}/dom_storage into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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/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 f5d400433d561851ca050cfec34496924d64afe9..f395d575f5cb247d7f4ccbf0b651d4dd700be4a2 100644
--- a/content/renderer/dom_storage/dom_storage_dispatcher.h
+++ b/content/renderer/dom_storage/dom_storage_dispatcher.h
@@ -16,23 +16,23 @@ class Message;
namespace content {
-class DomStorageCachedArea;
+class DOMStorageCachedArea;
// Dispatches DomStorage related messages sent to a renderer process from the
// main browser process. There is one instance per child process. Messages
// are dispatched on the main renderer thread. The RenderThreadImpl
// creates an instance and delegates calls to it. This classes also manages
-// the collection of DomStorageCachedAreas that are active in the process.
+// the collection of DOMStorageCachedAreas that are active in the process.
class DomStorageDispatcher {
public:
DomStorageDispatcher();
~DomStorageDispatcher();
// Each call to open should be balanced with a call to close.
- scoped_refptr<DomStorageCachedArea> OpenCachedArea(int connection_id,
+ scoped_refptr<DOMStorageCachedArea> OpenCachedArea(int connection_id,
int64 namespace_id,
const GURL& origin);
- void CloseCachedArea(int connection_id, DomStorageCachedArea* area);
+ void CloseCachedArea(int connection_id, DOMStorageCachedArea* area);
bool OnMessageReceived(const IPC::Message& msg);

Powered by Google App Engine
This is Rietveld 408576698