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

Side by Side Diff: third_party/WebKit/Source/web/WorkerContentSettingsClient.h

Issue 1846913009: HeapSupplements are now just Supplements. (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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 22 matching lines...) Expand all
33 33
34 #include "core/workers/WorkerClients.h" 34 #include "core/workers/WorkerClients.h"
35 #include "wtf/Forward.h" 35 #include "wtf/Forward.h"
36 36
37 namespace blink { 37 namespace blink {
38 38
39 class ExecutionContext; 39 class ExecutionContext;
40 class WebString; 40 class WebString;
41 class WebWorkerContentSettingsClientProxy; 41 class WebWorkerContentSettingsClientProxy;
42 42
43 class WorkerContentSettingsClient final : public GarbageCollectedFinalized<Worke rContentSettingsClient>, public HeapSupplement<WorkerClients> { 43 class WorkerContentSettingsClient final : public GarbageCollectedFinalized<Worke rContentSettingsClient>, public Supplement<WorkerClients> {
44 USING_GARBAGE_COLLECTED_MIXIN(WorkerContentSettingsClient); 44 USING_GARBAGE_COLLECTED_MIXIN(WorkerContentSettingsClient);
45 public: 45 public:
46 static RawPtr<WorkerContentSettingsClient> create(PassOwnPtr<WebWorkerConten tSettingsClientProxy>); 46 static RawPtr<WorkerContentSettingsClient> create(PassOwnPtr<WebWorkerConten tSettingsClientProxy>);
47 virtual ~WorkerContentSettingsClient(); 47 virtual ~WorkerContentSettingsClient();
48 48
49 bool requestFileSystemAccessSync(); 49 bool requestFileSystemAccessSync();
50 bool allowIndexedDB(const WebString& name); 50 bool allowIndexedDB(const WebString& name);
51 51
52 static const char* supplementName(); 52 static const char* supplementName();
53 static WorkerContentSettingsClient* from(ExecutionContext&); 53 static WorkerContentSettingsClient* from(ExecutionContext&);
54 54
55 DEFINE_INLINE_VIRTUAL_TRACE() { HeapSupplement<WorkerClients>::trace(visitor ); } 55 DEFINE_INLINE_VIRTUAL_TRACE() { Supplement<WorkerClients>::trace(visitor); }
56 56
57 private: 57 private:
58 explicit WorkerContentSettingsClient(PassOwnPtr<WebWorkerContentSettingsClie ntProxy>); 58 explicit WorkerContentSettingsClient(PassOwnPtr<WebWorkerContentSettingsClie ntProxy>);
59 59
60 OwnPtr<WebWorkerContentSettingsClientProxy> m_proxy; 60 OwnPtr<WebWorkerContentSettingsClientProxy> m_proxy;
61 }; 61 };
62 62
63 void provideContentSettingsClientToWorker(WorkerClients*, PassOwnPtr<WebWorkerCo ntentSettingsClientProxy>); 63 void provideContentSettingsClientToWorker(WorkerClients*, PassOwnPtr<WebWorkerCo ntentSettingsClientProxy>);
64 64
65 } // namespace blink 65 } // namespace blink
66 66
67 #endif // WorkerContentSettingsClient_h 67 #endif // WorkerContentSettingsClient_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698