| OLD | NEW |
| 1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
| 2 <!-- | 2 <!-- |
| 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. | 3 -- Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 4 -- Use of this source code is governed by a BSD-style license that can be | 4 -- Use of this source code is governed by a BSD-style license that can be |
| 5 -- found in the LICENSE file. | 5 -- found in the LICENSE file. |
| 6 --> | 6 --> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <link rel="stylesheet" type="text/css" href="css/common.css"/> | 9 <link rel="stylesheet" type="text/css" href="css/common.css"/> |
| 10 <link rel="stylesheet" type="text/css" href="css/file_types.css"/> | 10 <link rel="stylesheet" type="text/css" href="css/file_types.css"/> |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 <body> | 40 <body> |
| 41 <div class="action-choice"> | 41 <div class="action-choice"> |
| 42 <div class="title-bar"></div> | 42 <div class="title-bar"></div> |
| 43 <div class="previews"> | 43 <div class="previews"> |
| 44 <div class="spinner"></div> | 44 <div class="spinner"></div> |
| 45 </div> | 45 </div> |
| 46 <div class="counter"></div> | 46 <div class="counter"></div> |
| 47 | 47 |
| 48 <div class="choices"> | 48 <div class="choices"> |
| 49 <div> | 49 <div> |
| 50 <input id="import-photos-to-drive" type="radio" name="action" checked> | 50 <input id="view-files" type="radio" name="action" checked> |
| 51 <label for="view-files" |
| 52 i18n-content="ACTION_CHOICE_VIEW_FILES"></label> |
| 53 </div> |
| 54 |
| 55 <div> |
| 56 <input id="import-photos-to-drive" type="radio" name="action"> |
| 51 <label for="import-photos-to-drive" | 57 <label for="import-photos-to-drive" |
| 52 i18n-content="ACTION_CHOICE_PHOTOS_DRIVE"></label> | 58 i18n-content="ACTION_CHOICE_PHOTOS_DRIVE"></label> |
| 53 </div> | 59 </div> |
| 54 | 60 |
| 55 <div> | 61 <div> |
| 56 <input id="view-files" type="radio" name="action"> | 62 <input id="watch-single-video" type="radio" name="action"> |
| 57 <label for="view-files" | 63 <label for="watch-single-video"></label> |
| 58 i18n-content="ACTION_CHOICE_VIEW_FILES"></label> | |
| 59 </div> | 64 </div> |
| 60 </div> | 65 </div> |
| 61 | 66 |
| 62 <div class="footer"> | 67 <div class="footer"> |
| 63 <button class="ok" i18n-content="ACTION_CHOICE_OK"></button> | 68 <button class="ok" i18n-content="ACTION_CHOICE_OK"></button> |
| 64 </div> | 69 </div> |
| 65 </div> | 70 </div> |
| 66 </body> | 71 </body> |
| 67 </html> | 72 </html> |
| OLD | NEW |