| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
| 3 // LICENSE file. | 3 // LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_DISPATCHER_HOST_H_ | 5 #ifndef CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_DISPATCHER_HOST_H_ |
| 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_DISPATCHER_HOST_H_ | 6 #define CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_DISPATCHER_HOST_H_ |
| 7 | 7 |
| 8 #include "base/hash_tables.h" | 8 #include "base/hash_tables.h" |
| 9 #include "base/ref_counted.h" |
| 9 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| 10 #include "base/ref_counted.h" | |
| 11 #include "ipc/ipc_message.h" | 11 #include "ipc/ipc_message.h" |
| 12 | 12 |
| 13 class WebKitContext; | 13 class WebKitContext; |
| 14 class WebKitThread; | 14 class WebKitThread; |
| 15 | 15 |
| 16 namespace WebKit { | 16 namespace WebKit { |
| 17 class WebStorageArea; | 17 class WebStorageArea; |
| 18 class WebStorageNamespace; | 18 class WebStorageNamespace; |
| 19 class WebString; | 19 class WebString; |
| 20 } | 20 } |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 | 104 |
| 105 // This is set once the Shutdown routine runs on the WebKit thread. Once | 105 // This is set once the Shutdown routine runs on the WebKit thread. Once |
| 106 // set, we should not process any more messages because storage_area_map_ | 106 // set, we should not process any more messages because storage_area_map_ |
| 107 // and storage_namespace_map_ contain pointers to deleted objects. | 107 // and storage_namespace_map_ contain pointers to deleted objects. |
| 108 bool shutdown_; | 108 bool shutdown_; |
| 109 | 109 |
| 110 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageDispatcherHost); | 110 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageDispatcherHost); |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_DISPATCHER_HOST_H_ | 113 #endif // CHROME_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_DISPATCHER_HOST_H_ |
| OLD | NEW |