Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(40)

Side by Side Diff: chrome/browser/chromeos/file_manager/image_loader_jstest.cc

Issue 1137993007: Crop image at image_loader. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/thumbnail_loader.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 "chrome/browser/chromeos/file_manager/file_manager_jstest_base.h" 5 #include "chrome/browser/chromeos/file_manager/file_manager_jstest_base.h"
6 6
7 class ImageLoaderJsTest : public FileManagerJsTestBase { 7 class ImageLoaderJsTest : public FileManagerJsTestBase {
8 protected: 8 protected:
9 ImageLoaderJsTest() : FileManagerJsTestBase( 9 ImageLoaderJsTest() : FileManagerJsTestBase(
10 base::FilePath(FILE_PATH_LITERAL("ui/file_manager/image_loader"))) {} 10 base::FilePath(FILE_PATH_LITERAL("ui/file_manager/image_loader"))) {}
11 }; 11 };
12 12
13 IN_PROC_BROWSER_TEST_F(ImageLoaderJsTest, ImageLoaderClientTest) { 13 IN_PROC_BROWSER_TEST_F(ImageLoaderJsTest, ImageLoaderClientTest) {
14 RunTest(base::FilePath(FILE_PATH_LITERAL( 14 RunTest(base::FilePath(FILE_PATH_LITERAL(
15 "image_loader_client_unittest.html"))); 15 "image_loader_client_unittest.html")));
16 } 16 }
17 17
18 IN_PROC_BROWSER_TEST_F(ImageLoaderJsTest, CacheTest) { 18 IN_PROC_BROWSER_TEST_F(ImageLoaderJsTest, CacheTest) {
19 RunTest(base::FilePath(FILE_PATH_LITERAL( 19 RunTest(base::FilePath(FILE_PATH_LITERAL("cache_unittest.html")));
20 "cache_unittest.html")));
21 } 20 }
21
22 IN_PROC_BROWSER_TEST_F(ImageLoaderJsTest, ImageLoaderTest) {
23 RunTest(base::FilePath(FILE_PATH_LITERAL("image_loader_unittest.html")));
24 }
OLDNEW
« no previous file with comments | « no previous file | ui/file_manager/file_manager/foreground/js/thumbnail_loader.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698