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

Side by Side Diff: chrome/browser/resources/file_manager/js/mock_chrome.js

Issue 10837020: In case of search add "Searching..." string to the spinner in the center. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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 | Annotate | Revision Log
OLDNEW
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 function MockEventSource() { 5 function MockEventSource() {
6 this.listeners_ = []; 6 this.listeners_ = [];
7 } 7 }
8 8
9 /** 9 /**
10 * Add a listener. 10 * Add a listener.
(...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 TAR_BZIP2_ARCHIVE_FILE_TYPE: 'Bzip2 compressed tar archive', 652 TAR_BZIP2_ARCHIVE_FILE_TYPE: 'Bzip2 compressed tar archive',
653 TAR_GZIP_ARCHIVE_FILE_TYPE: 'Gzip compressed tar archive', 653 TAR_GZIP_ARCHIVE_FILE_TYPE: 'Gzip compressed tar archive',
654 PLAIN_TEXT_FILE_TYPE: 'Plain text file', 654 PLAIN_TEXT_FILE_TYPE: 'Plain text file',
655 PDF_DOCUMENT_FILE_TYPE: 'PDF document', 655 PDF_DOCUMENT_FILE_TYPE: 'PDF document',
656 WORD_DOCUMENT_FILE_TYPE: 'Word document', 656 WORD_DOCUMENT_FILE_TYPE: 'Word document',
657 POWERPOINT_PRESENTATION_FILE_TYPE: 'PowerPoint presentation', 657 POWERPOINT_PRESENTATION_FILE_TYPE: 'PowerPoint presentation',
658 EXCEL_FILE_TYPE: 'Excel spreadsheet', 658 EXCEL_FILE_TYPE: 'Excel spreadsheet',
659 659
660 SEARCH_TEXT_LABEL: 'Search', 660 SEARCH_TEXT_LABEL: 'Search',
661 SEARCH_NO_MATCHING_FILES: 'No files match <b>"$1"</b>', 661 SEARCH_NO_MATCHING_FILES: 'No files match <b>"$1"</b>',
662 SEARCH_SPINNER: 'Searching...',
662 663
663 TIME_TODAY: 'Today, $1', 664 TIME_TODAY: 'Today, $1',
664 TIME_YESTERDAY: 'Yesterday, $1', 665 TIME_YESTERDAY: 'Yesterday, $1',
665 666
666 ALL_FILES_FILTER: 'All files', 667 ALL_FILES_FILTER: 'All files',
667 668
668 DEFAULT_ACTION_LABEL: '(default)', 669 DEFAULT_ACTION_LABEL: '(default)',
669 ASH: true, 670 ASH: true,
670 DETAIL_VIEW_TOOLTIP: 'List view', 671 DETAIL_VIEW_TOOLTIP: 'List view',
671 THUMBNAIL_VIEW_TOOLTIP: 'Thumbnail view', 672 THUMBNAIL_VIEW_TOOLTIP: 'Thumbnail view',
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
816 compare: function(a, b) { 817 compare: function(a, b) {
817 if (a > b) return 1; 818 if (a > b) return 1;
818 if (a < b) return -1; 819 if (a < b) return -1;
819 return 0; 820 return 0;
820 } 821 }
821 }; 822 };
822 }; 823 };
823 824
824 return v8Intl; 825 return v8Intl;
825 }()); 826 }());
OLDNEW
« no previous file with comments | « chrome/browser/resources/file_manager/js/file_manager.js ('k') | chrome/browser/resources/file_manager/main.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698