| Index: third_party/WebKit/Source/core/testing/OriginTrialsTestPartial.h
|
| diff --git a/third_party/WebKit/Source/core/testing/OriginTrialsTestPartial.h b/third_party/WebKit/Source/core/testing/OriginTrialsTestPartial.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ae1637d8f402d3b827d1bf86d8e5a5d2d804cfab
|
| --- /dev/null
|
| +++ b/third_party/WebKit/Source/core/testing/OriginTrialsTestPartial.h
|
| @@ -0,0 +1,26 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef OriginTrialsTestPartial_h
|
| +#define OriginTrialsTestPartial_h
|
| +
|
| +#include "wtf/Allocator.h"
|
| +
|
| +namespace blink {
|
| +
|
| +class OriginTrialsTest;
|
| +
|
| +class OriginTrialsTestPartial final {
|
| + STATIC_ONLY(OriginTrialsTestPartial);
|
| +public:
|
| + static bool normalAttributePartial(OriginTrialsTest&) { return true; }
|
| + static bool staticAttributePartial() { return true; }
|
| + static bool methodPartial(OriginTrialsTest&) { return true; }
|
| + static bool staticMethodPartial() { return true; }
|
| + static const unsigned kConstantPartial = 2;
|
| +};
|
| +
|
| +} // namespace blink
|
| +
|
| +#endif // OriginTrialsTestPartial_h
|
|
|