OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef ContentSettingCallbacks_h | 5 #ifndef ContentSettingCallbacks_h |
6 #define ContentSettingCallbacks_h | 6 #define ContentSettingCallbacks_h |
7 | 7 |
8 #include "platform/PlatformExport.h" | 8 #include "platform/PlatformExport.h" |
9 #include "wtf/Allocator.h" | 9 #include "wtf/Allocator.h" |
10 #include "wtf/Functional.h" | 10 #include "wtf/Functional.h" |
11 #include "wtf/Noncopyable.h" | 11 #include "wtf/Noncopyable.h" |
12 #include "wtf/OwnPtr.h" | 12 #include "wtf/OwnPtr.h" |
13 #include "wtf/PassOwnPtr.h" | 13 #include "wtf/PassOwnPtr.h" |
14 | 14 |
15 namespace blink { | 15 namespace blink { |
16 | 16 |
17 class PLATFORM_EXPORT ContentSettingCallbacks { | 17 class PLATFORM_EXPORT ContentSettingCallbacks { |
18 USING_FAST_MALLOC(ContentSettingCallbacks); | 18 USING_FAST_MALLOC(ContentSettingCallbacks); |
19 WTF_MAKE_NONCOPYABLE(ContentSettingCallbacks); | 19 WTF_MAKE_NONCOPYABLE(ContentSettingCallbacks); |
20 public: | 20 public: |
21 static PassOwnPtr<ContentSettingCallbacks> create(PassOwnPtr<Closure> allowe
d, PassOwnPtr<Closure> denied); | 21 static PassOwnPtr<ContentSettingCallbacks> create(PassOwnPtr<SameThreadClosu
re> allowed, PassOwnPtr<SameThreadClosure> denied); |
22 virtual ~ContentSettingCallbacks() { } | 22 virtual ~ContentSettingCallbacks() { } |
23 | 23 |
24 void onAllowed() { (*m_allowed)(); } | 24 void onAllowed() { (*m_allowed)(); } |
25 void onDenied() { (*m_denied)(); } | 25 void onDenied() { (*m_denied)(); } |
26 | 26 |
27 private: | 27 private: |
28 ContentSettingCallbacks(PassOwnPtr<Closure> allowed, PassOwnPtr<Closure> den
ied); | 28 ContentSettingCallbacks(PassOwnPtr<SameThreadClosure> allowed, PassOwnPtr<Sa
meThreadClosure> denied); |
29 | 29 |
30 OwnPtr<Closure> m_allowed; | 30 OwnPtr<SameThreadClosure> m_allowed; |
31 OwnPtr<Closure> m_denied; | 31 OwnPtr<SameThreadClosure> m_denied; |
32 }; | 32 }; |
33 | 33 |
34 } // namespace blink | 34 } // namespace blink |
35 | 35 |
36 #endif // ContentSettingCallbacks_h | 36 #endif // ContentSettingCallbacks_h |
OLD | NEW |