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

Side by Side Diff: third_party/WebKit/Source/modules/storage/StorageArea.h

Issue 1686483002: Oilpan: Remove most WillBe types from the code base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 2009 Google Inc. All Rights Reserved. 2 * Copyright (C) 2009 Google 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 class Storage; 42 class Storage;
43 class WebStorageArea; 43 class WebStorageArea;
44 class WebStorageNamespace; 44 class WebStorageNamespace;
45 45
46 enum StorageType { 46 enum StorageType {
47 LocalStorage, 47 LocalStorage,
48 SessionStorage 48 SessionStorage
49 }; 49 };
50 50
51 class MODULES_EXPORT StorageArea final : public GarbageCollectedFinalized<Storag eArea>, public LocalFrameLifecycleObserver { 51 class MODULES_EXPORT StorageArea final : public GarbageCollectedFinalized<Storag eArea>, public LocalFrameLifecycleObserver {
52 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(StorageArea); 52 USING_GARBAGE_COLLECTED_MIXIN(StorageArea);
53 public: 53 public:
54 static StorageArea* create(PassOwnPtr<WebStorageArea>, StorageType); 54 static StorageArea* create(PassOwnPtr<WebStorageArea>, StorageType);
55 55
56 virtual ~StorageArea(); 56 virtual ~StorageArea();
57 57
58 // The HTML5 DOM Storage API 58 // The HTML5 DOM Storage API
59 unsigned length(ExceptionState&, LocalFrame* sourceFrame); 59 unsigned length(ExceptionState&, LocalFrame* sourceFrame);
60 String key(unsigned index, ExceptionState&, LocalFrame* sourceFrame); 60 String key(unsigned index, ExceptionState&, LocalFrame* sourceFrame);
61 String getItem(const String& key, ExceptionState&, LocalFrame* sourceFrame); 61 String getItem(const String& key, ExceptionState&, LocalFrame* sourceFrame);
62 void setItem(const String& key, const String& value, ExceptionState&, LocalF rame* sourceFrame); 62 void setItem(const String& key, const String& value, ExceptionState&, LocalF rame* sourceFrame);
(...skipping 16 matching lines...) Expand all
79 static bool isEventSource(Storage*, WebStorageArea* sourceAreaInstance); 79 static bool isEventSource(Storage*, WebStorageArea* sourceAreaInstance);
80 80
81 OwnPtr<WebStorageArea> m_storageArea; 81 OwnPtr<WebStorageArea> m_storageArea;
82 StorageType m_storageType; 82 StorageType m_storageType;
83 bool m_canAccessStorageCachedResult; 83 bool m_canAccessStorageCachedResult;
84 }; 84 };
85 85
86 } // namespace blink 86 } // namespace blink
87 87
88 #endif // StorageArea_h 88 #endif // StorageArea_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/modules/storage/Storage.h ('k') | third_party/WebKit/Source/modules/storage/StorageEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698