| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_MESSAGE_FILTER_H_ | 5 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_MESSAGE_FILTER_H_ |
| 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_MESSAGE_FILTER_H_ | 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_MESSAGE_FILTER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
| 10 #include "base/process.h" | 10 #include "base/process.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 virtual void OnDestruct() const; | 35 virtual void OnDestruct() const; |
| 36 | 36 |
| 37 // Only call on the WebKit thread. | 37 // Only call on the WebKit thread. |
| 38 static void DispatchStorageEvent(const NullableString16& key, | 38 static void DispatchStorageEvent(const NullableString16& key, |
| 39 const NullableString16& old_value, const NullableString16& new_value, | 39 const NullableString16& old_value, const NullableString16& new_value, |
| 40 const string16& origin, const GURL& url, bool is_local_storage); | 40 const string16& origin, const GURL& url, bool is_local_storage); |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 friend class BrowserThread; | 43 friend class BrowserThread; |
| 44 friend class DeleteTask<DOMStorageMessageFilter>; | 44 friend class DeleteTask<DOMStorageMessageFilter>; |
| 45 ~DOMStorageMessageFilter(); | 45 virtual ~DOMStorageMessageFilter(); |
| 46 | 46 |
| 47 // Message Handlers. | 47 // Message Handlers. |
| 48 void OnStorageAreaId(int64 namespace_id, const string16& origin, | 48 void OnStorageAreaId(int64 namespace_id, const string16& origin, |
| 49 int64* storage_area_id); | 49 int64* storage_area_id); |
| 50 void OnLength(int64 storage_area_id, unsigned* length); | 50 void OnLength(int64 storage_area_id, unsigned* length); |
| 51 void OnKey(int64 storage_area_id, unsigned index, NullableString16* key); | 51 void OnKey(int64 storage_area_id, unsigned index, NullableString16* key); |
| 52 void OnGetItem(int64 storage_area_id, const string16& key, | 52 void OnGetItem(int64 storage_area_id, const string16& key, |
| 53 NullableString16* value); | 53 NullableString16* value); |
| 54 void OnSetItem(int render_view_id, int64 storage_area_id, const string16& key, | 54 void OnSetItem(int render_view_id, int64 storage_area_id, const string16& key, |
| 55 const string16& value, const GURL& url, | 55 const string16& value, const GURL& url, |
| (...skipping 27 matching lines...) Expand all Loading... |
| 83 // Data shared between renderer processes with the same profile. | 83 // Data shared between renderer processes with the same profile. |
| 84 scoped_refptr<WebKitContext> webkit_context_; | 84 scoped_refptr<WebKitContext> webkit_context_; |
| 85 | 85 |
| 86 // Used to dispatch messages to the correct view host. | 86 // Used to dispatch messages to the correct view host. |
| 87 int process_id_; | 87 int process_id_; |
| 88 | 88 |
| 89 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageMessageFilter); | 89 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageMessageFilter); |
| 90 }; | 90 }; |
| 91 | 91 |
| 92 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_MESSAGE_FILTER_H_ | 92 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_MESSAGE_FILTER_H_ |
| OLD | NEW |