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

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

Issue 15239002: Move Extension and PermissionsData to extensions/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 // Browser test for basic Chrome OS file manager functionality: 5 // Browser test for basic Chrome OS file manager functionality:
6 // - The file list is updated when a file is added externally to the Downloads 6 // - The file list is updated when a file is added externally to the Downloads
7 // folder. 7 // folder.
8 // - Selecting a file and copy-pasting it with the keyboard copies the file. 8 // - Selecting a file and copy-pasting it with the keyboard copies the file.
9 // - Selecting a file and pressing delete deletes it. 9 // - Selecting a file and pressing delete deletes it.
10 10
(...skipping 16 matching lines...) Expand all
27 #include "chrome/browser/chromeos/file_manager/drive_test_util.h" 27 #include "chrome/browser/chromeos/file_manager/drive_test_util.h"
28 #include "chrome/browser/drive/fake_drive_service.h" 28 #include "chrome/browser/drive/fake_drive_service.h"
29 #include "chrome/browser/extensions/api/test/test_api.h" 29 #include "chrome/browser/extensions/api/test/test_api.h"
30 #include "chrome/browser/extensions/component_loader.h" 30 #include "chrome/browser/extensions/component_loader.h"
31 #include "chrome/browser/extensions/extension_apitest.h" 31 #include "chrome/browser/extensions/extension_apitest.h"
32 #include "chrome/browser/extensions/extension_test_message_listener.h" 32 #include "chrome/browser/extensions/extension_test_message_listener.h"
33 #include "chrome/browser/google_apis/gdata_wapi_parser.h" 33 #include "chrome/browser/google_apis/gdata_wapi_parser.h"
34 #include "chrome/browser/google_apis/test_util.h" 34 #include "chrome/browser/google_apis/test_util.h"
35 #include "chrome/browser/profiles/profile.h" 35 #include "chrome/browser/profiles/profile.h"
36 #include "chrome/common/chrome_switches.h" 36 #include "chrome/common/chrome_switches.h"
37 #include "chrome/common/extensions/extension.h"
38 #include "chromeos/chromeos_switches.h" 37 #include "chromeos/chromeos_switches.h"
39 #include "content/public/browser/browser_context.h" 38 #include "content/public/browser/browser_context.h"
40 #include "content/public/browser/notification_service.h" 39 #include "content/public/browser/notification_service.h"
41 #include "content/public/test/test_utils.h" 40 #include "content/public/test/test_utils.h"
41 #include "extensions/common/extension.h"
42 #include "net/test/embedded_test_server/embedded_test_server.h" 42 #include "net/test/embedded_test_server/embedded_test_server.h"
43 #include "webkit/browser/fileapi/external_mount_points.h" 43 #include "webkit/browser/fileapi/external_mount_points.h"
44 44
45 namespace file_manager { 45 namespace file_manager {
46 namespace { 46 namespace {
47 47
48 enum EntryType { 48 enum EntryType {
49 FILE, 49 FILE,
50 DIRECTORY, 50 DIRECTORY,
51 }; 51 };
(...skipping 669 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 "traverseNavigationList"))); 721 "traverseNavigationList")));
722 722
723 INSTANTIATE_TEST_CASE_P( 723 INSTANTIATE_TEST_CASE_P(
724 TabIndex, 724 TabIndex,
725 FileManagerBrowserTest, 725 FileManagerBrowserTest,
726 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, 726 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE,
727 "searchBoxFocus"))); 727 "searchBoxFocus")));
728 728
729 } // namespace 729 } // namespace
730 } // namespace file_manager 730 } // namespace file_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698