| Index: third_party/WebKit/Source/core/frame/UseCounterTest.cpp
 | 
| diff --git a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
 | 
| index 81e9d4c27c2c9ccd3feceb5c08f219e35c4d2e98..9d47640b1aa7319f598c24dfa52700d902df00f0 100644
 | 
| --- a/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
 | 
| +++ b/third_party/WebKit/Source/core/frame/UseCounterTest.cpp
 | 
| @@ -24,7 +24,13 @@ const char* const kLegacyCSSHistogramName =
 | 
|  
 | 
|  namespace blink {
 | 
|  
 | 
| -TEST(UseCounterTest, RecordingFeatures) {
 | 
| +// Failing on Android: crbug.com/667913
 | 
| +#if OS(ANDROID)
 | 
| +#define MAYBE_RecordingFeatures DISABLED_RecordingFeatures
 | 
| +#else
 | 
| +#define MAYBE_RecordingFeatures RecordingFeatures
 | 
| +#endif
 | 
| +TEST(UseCounterTest, MAYBE_RecordingFeatures) {
 | 
|    UseCounter useCounter;
 | 
|    HistogramTester histogramTester;
 | 
|  
 | 
| 
 |