| 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
|
| index 16cbb5120558f38af72e182952c8a940393e4a7b..b0d673adb985a756df6823d4b6141fd063f7bd9b 100644
|
| --- a/third_party/WebKit/Source/core/testing/OriginTrialsTestPartial.h
|
| +++ b/third_party/WebKit/Source/core/testing/OriginTrialsTestPartial.h
|
| @@ -19,9 +19,13 @@ class OriginTrialsTestPartial final {
|
| public:
|
| static bool normalAttributePartial(OriginTrialsTest&) { return true; }
|
| static bool staticAttributePartial() { return true; }
|
| - static bool methodPartial(OriginTrialsTest&) { return true; }
|
| + static bool normalMethodPartial(OriginTrialsTest&) { return true; }
|
| static bool staticMethodPartial() { return true; }
|
| static const unsigned kConstantPartial = 2;
|
| + static bool secureAttributePartial(OriginTrialsTest&) { return true; }
|
| + static bool secureStaticAttributePartial() { return true; }
|
| + static bool secureMethodPartial(OriginTrialsTest&) { return true; }
|
| + static bool secureStaticMethodPartial() { return true; }
|
| };
|
|
|
| } // namespace blink
|
|
|