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); |