| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "content/test/layout_browsertest.h" | 5 #include "content/test/layout_browsertest.h" |
| 6 | 6 |
| 7 namespace content { |
| 8 |
| 7 class BlobLayoutTest : public InProcessBrowserLayoutTest { | 9 class BlobLayoutTest : public InProcessBrowserLayoutTest { |
| 8 public: | 10 public: |
| 9 BlobLayoutTest() : | 11 BlobLayoutTest() : |
| 10 InProcessBrowserLayoutTest( | 12 InProcessBrowserLayoutTest( |
| 11 FilePath(), | 13 FilePath(), |
| 12 FilePath(FILE_PATH_LITERAL("fast/files")).NormalizePathSeparators()) { | 14 FilePath(FILE_PATH_LITERAL("fast/files")).NormalizePathSeparators()) { |
| 13 } | 15 } |
| 14 }; | 16 }; |
| 15 | 17 |
| 16 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, SliceTests) { | 18 IN_PROC_BROWSER_TEST_F(BlobLayoutTest, SliceTests) { |
| 17 RunLayoutTest("blob-slice-test.html"); | 19 RunLayoutTest("blob-slice-test.html"); |
| 18 } | 20 } |
| 21 |
| 22 } // namespace content |
| OLD | NEW |