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

Side by Side Diff: Source/core/storage/StorageArea.h

Issue 732803003: Clean up forward declarations in Source/core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « Source/core/rendering/FilterEffectRenderer.h ('k') | Source/core/storage/StorageNamespace.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 19 matching lines...) Expand all
30 #include "platform/heap/Handle.h" 30 #include "platform/heap/Handle.h"
31 #include "wtf/OwnPtr.h" 31 #include "wtf/OwnPtr.h"
32 #include "wtf/PassOwnPtr.h" 32 #include "wtf/PassOwnPtr.h"
33 #include "wtf/text/WTFString.h" 33 #include "wtf/text/WTFString.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 class ExceptionState; 37 class ExceptionState;
38 class LocalFrame; 38 class LocalFrame;
39 class KURL; 39 class KURL;
40 class Page;
41 class SecurityOrigin; 40 class SecurityOrigin;
42 class Storage; 41 class Storage;
43 class WebStorageArea; 42 class WebStorageArea;
44 class WebStorageNamespace; 43 class WebStorageNamespace;
45 44
46 enum StorageType { 45 enum StorageType {
47 LocalStorage, 46 LocalStorage,
48 SessionStorage 47 SessionStorage
49 }; 48 };
50 49
(...skipping 30 matching lines...) Expand all
81 static bool isEventSource(Storage*, WebStorageArea* sourceAreaInstance); 80 static bool isEventSource(Storage*, WebStorageArea* sourceAreaInstance);
82 81
83 OwnPtr<WebStorageArea> m_storageArea; 82 OwnPtr<WebStorageArea> m_storageArea;
84 StorageType m_storageType; 83 StorageType m_storageType;
85 bool m_canAccessStorageCachedResult; 84 bool m_canAccessStorageCachedResult;
86 }; 85 };
87 86
88 } // namespace blink 87 } // namespace blink
89 88
90 #endif // StorageArea_h 89 #endif // StorageArea_h
OLDNEW
« no previous file with comments | « Source/core/rendering/FilterEffectRenderer.h ('k') | Source/core/storage/StorageNamespace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698