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

Side by Side Diff: Source/modules/storage/StorageNamespace.h

Issue 1318793005: [part 2] Make classes and structures in modules fast-allocated. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 20 matching lines...) Expand all
31 #include "wtf/OwnPtr.h" 31 #include "wtf/OwnPtr.h"
32 #include "wtf/PassOwnPtr.h" 32 #include "wtf/PassOwnPtr.h"
33 33
34 namespace blink { 34 namespace blink {
35 35
36 class WebStorageNamespace; 36 class WebStorageNamespace;
37 class SecurityOrigin; 37 class SecurityOrigin;
38 class StorageArea; 38 class StorageArea;
39 39
40 class MODULES_EXPORT StorageNamespace { 40 class MODULES_EXPORT StorageNamespace {
41 WTF_MAKE_FAST_ALLOCATED(StorageNamespace);
41 public: 42 public:
42 explicit StorageNamespace(PassOwnPtr<WebStorageNamespace>); 43 explicit StorageNamespace(PassOwnPtr<WebStorageNamespace>);
43 ~StorageNamespace(); 44 ~StorageNamespace();
44 45
45 static StorageArea* localStorageArea(SecurityOrigin*); 46 static StorageArea* localStorageArea(SecurityOrigin*);
46 47
47 StorageArea* storageArea(SecurityOrigin*); 48 StorageArea* storageArea(SecurityOrigin*);
48 bool isSameNamespace(const WebStorageNamespace& sessionNamespace) const; 49 bool isSameNamespace(const WebStorageNamespace& sessionNamespace) const;
49 50
50 private: 51 private:
51 OwnPtr<WebStorageNamespace> m_webStorageNamespace; 52 OwnPtr<WebStorageNamespace> m_webStorageNamespace;
52 }; 53 };
53 54
54 } // namespace blink 55 } // namespace blink
55 56
56 #endif // StorageNamespace_h 57 #endif // StorageNamespace_h
OLDNEW
« no previous file with comments | « Source/modules/storage/DOMWindowStorageController.h ('k') | Source/modules/storage/StorageNamespaceController.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698