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

Side by Side Diff: third_party/WebKit/Source/modules/quota/StorageQuotaClient.h

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #ifndef StorageQuotaClient_h 31 #ifndef StorageQuotaClient_h
32 #define StorageQuotaClient_h 32 #define StorageQuotaClient_h
33 33
34 #include "core/page/Page.h" 34 #include "core/page/Page.h"
35 #include "modules/ModulesExport.h" 35 #include "modules/ModulesExport.h"
36 #include "platform/Supplementable.h" 36 #include "platform/Supplementable.h"
37 #include "platform/heap/Handle.h" 37 #include "platform/heap/Handle.h"
38 #include "platform/wtf/Forward.h"
38 #include "public/platform/WebStorageQuotaType.h" 39 #include "public/platform/WebStorageQuotaType.h"
39 #include "wtf/Forward.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class ExecutionContext; 43 class ExecutionContext;
44 class Page; 44 class Page;
45 class StorageErrorCallback; 45 class StorageErrorCallback;
46 class StorageQuotaCallback; 46 class StorageQuotaCallback;
47 47
48 class StorageQuotaClient : public Supplement<Page> { 48 class StorageQuotaClient : public Supplement<Page> {
49 WTF_MAKE_NONCOPYABLE(StorageQuotaClient); 49 WTF_MAKE_NONCOPYABLE(StorageQuotaClient);
(...skipping 10 matching lines...) Expand all
60 60
61 static const char* SupplementName(); 61 static const char* SupplementName();
62 static StorageQuotaClient* From(ExecutionContext*); 62 static StorageQuotaClient* From(ExecutionContext*);
63 }; 63 };
64 64
65 MODULES_EXPORT void ProvideStorageQuotaClientTo(Page&, StorageQuotaClient*); 65 MODULES_EXPORT void ProvideStorageQuotaClientTo(Page&, StorageQuotaClient*);
66 66
67 } // namespace blink 67 } // namespace blink
68 68
69 #endif // StorageQuotaClient_h 69 #endif // StorageQuotaClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698