blob: 36970473dd9c4a639c054b227c60ca6c6a837feb [file] [log] [blame]
[email protected]b9829df2013-11-18 22:03:511// 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
avi1023d012015-12-25 02:39:148#include <stddef.h>
9
[email protected]b9829df2013-11-18 22:03:5110#include "base/compiler_specific.h"
11#include "third_party/WebKit/public/platform/WebPublicSuffixList.h"
12
13namespace content {
14
15class WebPublicSuffixListImpl : public blink::WebPublicSuffixList {
16 public:
17 // WebPublicSuffixList methods:
avi5c77d212015-09-25 20:08:2518 size_t getPublicSuffixLength(const blink::WebString& host) override;
19 ~WebPublicSuffixListImpl() override;
[email protected]b9829df2013-11-18 22:03:5120};
21
22} // namespace content
23
24#endif // CONTENT_RENDERER_WEBPUBLICSUFFIXLIST_IMPL_H_