[email protected] | b9829df | 2013-11-18 22:03:51 | [diff] [blame] | 1 | // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef CONTENT_RENDERER_WEBPUBLICSUFFIXLIST_IMPL_H_ |
| 6 | #define CONTENT_RENDERER_WEBPUBLICSUFFIXLIST_IMPL_H_ |
| 7 | |
avi | 1023d01 | 2015-12-25 02:39:14 | [diff] [blame] | 8 | #include <stddef.h> |
| 9 | |
[email protected] | b9829df | 2013-11-18 22:03:51 | [diff] [blame] | 10 | #include "base/compiler_specific.h" |
| 11 | #include "third_party/WebKit/public/platform/WebPublicSuffixList.h" |
| 12 | |
| 13 | namespace content { |
| 14 | |
| 15 | class WebPublicSuffixListImpl : public blink::WebPublicSuffixList { |
| 16 | public: |
| 17 | // WebPublicSuffixList methods: |
avi | 5c77d21 | 2015-09-25 20:08:25 | [diff] [blame] | 18 | size_t getPublicSuffixLength(const blink::WebString& host) override; |
| 19 | ~WebPublicSuffixListImpl() override; |
[email protected] | b9829df | 2013-11-18 22:03:51 | [diff] [blame] | 20 | }; |
| 21 | |
| 22 | } // namespace content |
| 23 | |
| 24 | #endif // CONTENT_RENDERER_WEBPUBLICSUFFIXLIST_IMPL_H_ |