| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_ | 5 #ifndef CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_ |
| 6 #define CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_ | 6 #define CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" |
| 8 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 9 | 10 |
| 10 class GURL; | 11 class GURL; |
| 11 struct DOMStorageMsg_Event_Params; | 12 struct DOMStorageMsg_Event_Params; |
| 12 | 13 |
| 13 namespace IPC { | 14 namespace IPC { |
| 14 class Message; | 15 class Message; |
| 15 } | 16 } |
| 16 | 17 |
| 17 namespace content { | 18 namespace content { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 42 // IPC message handlers | 43 // IPC message handlers |
| 43 void OnStorageEvent(const DOMStorageMsg_Event_Params& params); | 44 void OnStorageEvent(const DOMStorageMsg_Event_Params& params); |
| 44 void OnAsyncOperationComplete(bool success); | 45 void OnAsyncOperationComplete(bool success); |
| 45 | 46 |
| 46 scoped_refptr<ProxyImpl> proxy_; | 47 scoped_refptr<ProxyImpl> proxy_; |
| 47 }; | 48 }; |
| 48 | 49 |
| 49 } // namespace content | 50 } // namespace content |
| 50 | 51 |
| 51 #endif // CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_ | 52 #endif // CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_DISPATCHER_H_ |
| OLD | NEW |