| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/test_runner/mock_web_theme_engine.h" | 5 #include "components/test_runner/mock_web_theme_engine.h" |
| 6 | 6 |
| 7 #if !defined(OS_MACOSX) | 7 #if !defined(OS_MACOSX) |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "build/build_config.h" |
| 10 #include "skia/ext/platform_canvas.h" | 11 #include "skia/ext/platform_canvas.h" |
| 11 #include "third_party/WebKit/public/platform/WebRect.h" | 12 #include "third_party/WebKit/public/platform/WebRect.h" |
| 12 #include "third_party/WebKit/public/platform/WebSize.h" | 13 #include "third_party/WebKit/public/platform/WebSize.h" |
| 13 #include "third_party/skia/include/core/SkPaint.h" | 14 #include "third_party/skia/include/core/SkPaint.h" |
| 14 #include "third_party/skia/include/core/SkPath.h" | 15 #include "third_party/skia/include/core/SkPath.h" |
| 15 #include "third_party/skia/include/core/SkRect.h" | 16 #include "third_party/skia/include/core/SkRect.h" |
| 16 | 17 |
| 17 using blink::WebCanvas; | 18 using blink::WebCanvas; |
| 18 using blink::WebColor; | 19 using blink::WebColor; |
| 19 using blink::WebRect; | 20 using blink::WebRect; |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 // part? | 588 // part? |
| 588 // Unfortunately, we can't assert because we don't have access to WTF or | 589 // Unfortunately, we can't assert because we don't have access to WTF or |
| 589 // base. | 590 // base. |
| 590 break; | 591 break; |
| 591 } | 592 } |
| 592 } | 593 } |
| 593 | 594 |
| 594 } // namespace test_runner | 595 } // namespace test_runner |
| 595 | 596 |
| 596 #endif // !defined(OS_MACOSX) | 597 #endif // !defined(OS_MACOSX) |
| OLD | NEW |