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

Side by Side Diff: chrome/browser/resources/md_history/app.vulcanized.html

Issue 2352553002: [MD History] Run MD History on chrome://chrome/history. (Closed)
Patch Set: Created 4 years, 3 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
OLDNEW
1 <html><head><!-- 1 <html><head><!--
2 @license 2 @license
3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved. 3 Copyright (c) 2014 The Polymer Project Authors. All rights reserved.
4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt 4 This code may only be used under the BSD style license found at http://polymer.g ithub.io/LICENSE.txt
5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt 5 The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt 6 The complete set of contributors may be found at http://polymer.github.io/CONTRI BUTORS.txt
7 Code distributed by Google as part of the polymer project is also 7 Code distributed by Google as part of the polymer project is also
8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt 8 subject to an additional IP rights grant found at http://polymer.github.io/PATEN TS.txt
9 --><!-- 9 --><!--
10 @license 10 @license
(...skipping 2891 matching lines...) Expand 10 before | Expand all | Expand 10 after
2902 --first-card-padding-top: 24px; 2902 --first-card-padding-top: 24px;
2903 --item-height: 44px; 2903 --item-height: 44px;
2904 --primary-text-color: #333; 2904 --primary-text-color: #333;
2905 --secondary-text-color: #757575; 2905 --secondary-text-color: #757575;
2906 --side-bar-width: 256px; 2906 --side-bar-width: 256px;
2907 --toolbar-grouped-height: 101px; 2907 --toolbar-grouped-height: 101px;
2908 --toolbar-height: 56px; 2908 --toolbar-height: 56px;
2909 } 2909 }
2910 2910
2911 </style> 2911 </style>
2912 <dom-module id="shared-style" assetpath="chrome://history/" css-build="shadow"> 2912 <dom-module id="shared-style" assetpath="chrome://chrome/history/" css-build="sh adow">
2913 <template> 2913 <template>
2914 <style scope="shared-style">[hidden] { 2914 <style scope="shared-style">[hidden] {
2915 display: none !important; 2915 display: none !important;
2916 } 2916 }
2917 2917
2918 .card-title { 2918 .card-title {
2919 -webkit-padding-start: 20px; 2919 -webkit-padding-start: 20px;
2920 align-items: center; 2920 align-items: center;
2921 border-bottom: 1px solid var(--card-border-color); 2921 border-bottom: 1px solid var(--card-border-color);
2922 border-radius: 2px 2px 0 0; 2922 border-radius: 2px 2px 0 0;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
2982 border: 2px solid var(--secondary-text-color); 2982 border: 2px solid var(--secondary-text-color);
2983 border-radius: 2px; 2983 border-radius: 2px;
2984 margin: 1px 10px; 2984 margin: 1px 10px;
2985 pointer-events: none; 2985 pointer-events: none;
2986 transform: scale(0.8); 2986 transform: scale(0.8);
2987 } 2987 }
2988 2988
2989 </style> 2989 </style>
2990 </template> 2990 </template>
2991 </dom-module> 2991 </dom-module>
2992 <dom-module id="history-toolbar" assetpath="chrome://history/" css-build="shadow "> 2992 <dom-module id="history-toolbar" assetpath="chrome://chrome/history/" css-build= "shadow">
2993 <template> 2993 <template>
2994 <style scope="history-toolbar">[hidden] { 2994 <style scope="history-toolbar">[hidden] {
2995 display: none !important; 2995 display: none !important;
2996 } 2996 }
2997 2997
2998 .card-title { 2998 .card-title {
2999 -webkit-padding-start: 20px; 2999 -webkit-padding-start: 20px;
3000 align-items: center; 3000 align-items: center;
3001 border-bottom: 1px solid var(--card-border-color); 3001 border-bottom: 1px solid var(--card-border-color);
3002 border-radius: 2px 2px 0 0; 3002 border-radius: 2px 2px 0 0;
(...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after
3570 3570
3571 ; 3571 ;
3572 } 3572 }
3573 3573
3574 </style> 3574 </style>
3575 3575
3576 <content></content> 3576 <content></content>
3577 </template> 3577 </template>
3578 3578
3579 </dom-module> 3579 </dom-module>
3580 <link rel="import" href="chrome://history/constants.html"> 3580 <link rel="import" href="chrome://chrome/history/constants.html">
3581 <dom-module id="iron-collapse" assetpath="chrome://resources/polymer/v1_0/iron-c ollapse/" css-build="shadow"> 3581 <dom-module id="iron-collapse" assetpath="chrome://resources/polymer/v1_0/iron-c ollapse/" css-build="shadow">
3582 3582
3583 <template> 3583 <template>
3584 3584
3585 <style scope="iron-collapse">:host { 3585 <style scope="iron-collapse">:host {
3586 display: block; 3586 display: block;
3587 transition-duration: var(--iron-collapse-transition-duration, 300ms); 3587 transition-duration: var(--iron-collapse-transition-duration, 300ms);
3588 overflow: visible; 3588 overflow: visible;
3589 } 3589 }
3590 3590
3591 :host(.iron-collapse-closed) { 3591 :host(.iron-collapse-closed) {
3592 display: none; 3592 display: none;
3593 } 3593 }
3594 3594
3595 :host(:not(.iron-collapse-opened)) { 3595 :host(:not(.iron-collapse-opened)) {
3596 overflow: hidden; 3596 overflow: hidden;
3597 } 3597 }
3598 3598
3599 </style> 3599 </style>
3600 3600
3601 <content></content> 3601 <content></content>
3602 3602
3603 </template> 3603 </template>
3604 3604
3605 </dom-module> 3605 </dom-module>
3606 3606
3607 <dom-module id="history-searched-label" assetpath="chrome://history/" css-build= "shadow"> 3607 <dom-module id="history-searched-label" assetpath="chrome://chrome/history/" css -build="shadow">
3608 </dom-module> 3608 </dom-module>
3609 <dom-module id="history-item" assetpath="chrome://history/" css-build="shadow"> 3609 <dom-module id="history-item" assetpath="chrome://chrome/history/" css-build="sh adow">
3610 <template> 3610 <template>
3611 <style scope="history-item">[hidden] { 3611 <style scope="history-item">[hidden] {
3612 display: none !important; 3612 display: none !important;
3613 } 3613 }
3614 3614
3615 .card-title { 3615 .card-title {
3616 -webkit-padding-start: 20px; 3616 -webkit-padding-start: 20px;
3617 align-items: center; 3617 align-items: center;
3618 border-bottom: 1px solid var(--card-border-color); 3618 border-bottom: 1px solid var(--card-border-color);
3619 border-radius: 2px 2px 0 0; 3619 border-radius: 2px 2px 0 0;
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
3902 <div></div> 3902 <div></div>
3903 <div></div> 3903 <div></div>
3904 <div></div> 3904 <div></div>
3905 </button> 3905 </button>
3906 </div> 3906 </div>
3907 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div> 3907 <div id="time-gap-separator" hidden="[[!hasTimeGap]]"></div>
3908 </div> 3908 </div>
3909 </div> 3909 </div>
3910 </template> 3910 </template>
3911 </dom-module> 3911 </dom-module>
3912 <dom-module id="history-grouped-list" assetpath="chrome://history/" css-build="s hadow"> 3912 <dom-module id="history-grouped-list" assetpath="chrome://chrome/history/" css-b uild="shadow">
3913 <template> 3913 <template>
3914 <style scope="history-grouped-list">[hidden] { 3914 <style scope="history-grouped-list">[hidden] {
3915 display: none !important; 3915 display: none !important;
3916 } 3916 }
3917 3917
3918 .card-title { 3918 .card-title {
3919 -webkit-padding-start: 20px; 3919 -webkit-padding-start: 20px;
3920 align-items: center; 3920 align-items: center;
3921 border-bottom: 1px solid var(--card-border-color); 3921 border-bottom: 1px solid var(--card-border-color);
3922 border-radius: 2px 2px 0 0; 3922 border-radius: 2px 2px 0 0;
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
4131 display: block; 4131 display: block;
4132 } 4132 }
4133 4133
4134 </style> 4134 </style>
4135 4135
4136 <content></content> 4136 <content></content>
4137 4137
4138 </template> 4138 </template>
4139 </dom-module> 4139 </dom-module>
4140 4140
4141 <dom-module id="history-list" assetpath="chrome://history/" css-build="shadow"> 4141 <dom-module id="history-list" assetpath="chrome://chrome/history/" css-build="sh adow">
4142 <template> 4142 <template>
4143 <style scope="history-list">[hidden] { 4143 <style scope="history-list">[hidden] {
4144 display: none !important; 4144 display: none !important;
4145 } 4145 }
4146 4146
4147 .card-title { 4147 .card-title {
4148 -webkit-padding-start: 20px; 4148 -webkit-padding-start: 20px;
4149 align-items: center; 4149 align-items: center;
4150 border-bottom: 1px solid var(--card-border-color); 4150 border-bottom: 1px solid var(--card-border-color);
4151 border-radius: 2px 2px 0 0; 4151 border-radius: 2px 2px 0 0;
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
4231 <iron-list items="{{historyData_}}" as="item" id="infinite-list" hidden$="[[ !hasResults(historyData_.length)]]"> 4231 <iron-list items="{{historyData_}}" as="item" id="infinite-list" hidden$="[[ !hasResults(historyData_.length)]]">
4232 <template> 4232 <template>
4233 <history-item tabindex="-1" item="[[item]]" selected="{{item.selected}}" is-first-item="[[isFirstItem_(index)]]" is-card-start="[[isCardStart_(item, ind ex, historyData_.length)]]" is-card-end="[[isCardEnd_(item, index, historyData_. length)]]" has-time-gap="[[needsTimeGap_(item, index, historyData_.length)]]" se arch-term="[[searchedTerm]]" number-of-items="[[historyData_.length]]" path="[[p athForItem_(index)]]" index="[[index]]" tab-index="[[tabIndex]]" last-focused="{ {lastFocused_}}"> 4233 <history-item tabindex="-1" item="[[item]]" selected="{{item.selected}}" is-first-item="[[isFirstItem_(index)]]" is-card-start="[[isCardStart_(item, ind ex, historyData_.length)]]" is-card-end="[[isCardEnd_(item, index, historyData_. length)]]" has-time-gap="[[needsTimeGap_(item, index, historyData_.length)]]" se arch-term="[[searchedTerm]]" number-of-items="[[historyData_.length]]" path="[[p athForItem_(index)]]" index="[[index]]" tab-index="[[tabIndex]]" last-focused="{ {lastFocused_}}">
4234 </history-item> 4234 </history-item>
4235 </template> 4235 </template>
4236 </iron-list> 4236 </iron-list>
4237 <iron-scroll-threshold id="scroll-threshold" scroll-target="infinite-list" l ower-threshold="500" on-lower-threshold="loadMoreData_"> 4237 <iron-scroll-threshold id="scroll-threshold" scroll-target="infinite-list" l ower-threshold="500" on-lower-threshold="loadMoreData_">
4238 </iron-scroll-threshold> 4238 </iron-scroll-threshold>
4239 </template> 4239 </template>
4240 </dom-module> 4240 </dom-module>
4241 <dom-module id="history-list-container" assetpath="chrome://history/" css-build= "shadow"> 4241 <dom-module id="history-list-container" assetpath="chrome://chrome/history/" css -build="shadow">
4242 <template> 4242 <template>
4243 <style scope="history-list-container">[hidden] { 4243 <style scope="history-list-container">[hidden] {
4244 display: none !important; 4244 display: none !important;
4245 } 4245 }
4246 4246
4247 .card-title { 4247 .card-title {
4248 -webkit-padding-start: 20px; 4248 -webkit-padding-start: 20px;
4249 align-items: center; 4249 align-items: center;
4250 border-bottom: 1px solid var(--card-border-color); 4250 border-bottom: 1px solid var(--card-border-color);
4251 border-radius: 2px 2px 0 0; 4251 border-radius: 2px 2px 0 0;
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
4419 <paper-item id="menuMoreButton" class="menu-item" on-tap="onMoreFromSite Tap_"> 4419 <paper-item id="menuMoreButton" class="menu-item" on-tap="onMoreFromSite Tap_">
4420 $i18n{moreFromSite} 4420 $i18n{moreFromSite}
4421 </paper-item> 4421 </paper-item>
4422 <paper-item id="menuRemoveButton" class="menu-item" on-tap="onRemoveFrom HistoryTap_"> 4422 <paper-item id="menuRemoveButton" class="menu-item" on-tap="onRemoveFrom HistoryTap_">
4423 $i18n{removeFromHistory} 4423 $i18n{removeFromHistory}
4424 </paper-item> 4424 </paper-item>
4425 </cr-shared-menu> 4425 </cr-shared-menu>
4426 </template> 4426 </template>
4427 </template> 4427 </template>
4428 </dom-module> 4428 </dom-module>
4429 <dom-module id="history-synced-device-card" assetpath="chrome://history/" css-bu ild="shadow"> 4429 <dom-module id="history-synced-device-card" assetpath="chrome://chrome/history/" css-build="shadow">
4430 <template> 4430 <template>
4431 <style scope="history-synced-device-card">[hidden] { 4431 <style scope="history-synced-device-card">[hidden] {
4432 display: none !important; 4432 display: none !important;
4433 } 4433 }
4434 4434
4435 .card-title { 4435 .card-title {
4436 -webkit-padding-start: 20px; 4436 -webkit-padding-start: 20px;
4437 align-items: center; 4437 align-items: center;
4438 border-bottom: 1px solid var(--card-border-color); 4438 border-bottom: 1px solid var(--card-border-color);
4439 border-radius: 2px 2px 0 0; 4439 border-radius: 2px 2px 0 0;
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
4584 </a> 4584 </a>
4585 </div> 4585 </div>
4586 <div id="window-separator" hidden$="[[!isWindowSeparatorIndex_(index , separatorIndexes)]]"> 4586 <div id="window-separator" hidden$="[[!isWindowSeparatorIndex_(index , separatorIndexes)]]">
4587 </div> 4587 </div>
4588 </template> 4588 </template>
4589 </div> 4589 </div>
4590 </iron-collapse> 4590 </iron-collapse>
4591 </div> 4591 </div>
4592 </template> 4592 </template>
4593 </dom-module> 4593 </dom-module>
4594 <dom-module id="history-synced-device-manager" assetpath="chrome://history/" css -build="shadow"> 4594 <dom-module id="history-synced-device-manager" assetpath="chrome://chrome/histor y/" css-build="shadow">
4595 <template> 4595 <template>
4596 <style scope="history-synced-device-manager">[hidden] { 4596 <style scope="history-synced-device-manager">[hidden] {
4597 display: none !important; 4597 display: none !important;
4598 } 4598 }
4599 4599
4600 .card-title { 4600 .card-title {
4601 -webkit-padding-start: 20px; 4601 -webkit-padding-start: 20px;
4602 align-items: center; 4602 align-items: center;
4603 border-bottom: 1px solid var(--card-border-color); 4603 border-bottom: 1px solid var(--card-border-color);
4604 border-radius: 2px 2px 0 0; 4604 border-radius: 2px 2px 0 0;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
4729 cursor: var(--cr-actionable_-_cursor); 4729 cursor: var(--cr-actionable_-_cursor);
4730 } 4730 }
4731 4731
4732 :host { 4732 :host {
4733 display: block; 4733 display: block;
4734 overflow: auto; 4734 overflow: auto;
4735 } 4735 }
4736 4736
4737 #illustration { 4737 #illustration {
4738 background: -webkit-image-set( 4738 background: -webkit-image-set(
4739 url("chrome://history/images/100/sign_in_promo.png") 1x, 4739 url("chrome://chrome/history/images/100/sign_in_promo.png") 1x,
4740 url("chrome://history/images/200/sign_in_promo.png") 2x) 4740 url("chrome://chrome/history/images/200/sign_in_promo.png") 2x)
4741 no-repeat center center; 4741 no-repeat center center;
4742 height: 222px; 4742 height: 222px;
4743 margin-top: 100px; 4743 margin-top: 100px;
4744 width: 594px; 4744 width: 594px;
4745 } 4745 }
4746 4746
4747 #no-synced-tabs { 4747 #no-synced-tabs {
4748 height: 100%; 4748 height: 100%;
4749 } 4749 }
4750 4750
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
4804 <paper-item id="menuOpenButton" class="menu-item" on-tap="onOpenAllTap_" > 4804 <paper-item id="menuOpenButton" class="menu-item" on-tap="onOpenAllTap_" >
4805 $i18n{openAll} 4805 $i18n{openAll}
4806 </paper-item> 4806 </paper-item>
4807 <paper-item id="menuDeleteButton" class="menu-item" on-tap="onDeleteSess ionTap_"> 4807 <paper-item id="menuDeleteButton" class="menu-item" on-tap="onDeleteSess ionTap_">
4808 $i18n{deleteSession} 4808 $i18n{deleteSession}
4809 </paper-item> 4809 </paper-item>
4810 </cr-shared-menu> 4810 </cr-shared-menu>
4811 </template> 4811 </template>
4812 </template> 4812 </template>
4813 </dom-module> 4813 </dom-module>
4814 <dom-module id="history-side-bar" assetpath="chrome://history/" css-build="shado w"> 4814 <dom-module id="history-side-bar" assetpath="chrome://chrome/history/" css-build ="shadow">
4815 <template> 4815 <template>
4816 <style scope="history-side-bar">[hidden] { 4816 <style scope="history-side-bar">[hidden] {
4817 display: none !important; 4817 display: none !important;
4818 } 4818 }
4819 4819
4820 .card-title { 4820 .card-title {
4821 -webkit-padding-start: 20px; 4821 -webkit-padding-start: 20px;
4822 align-items: center; 4822 align-items: center;
4823 border-bottom: 1px solid var(--card-border-color); 4823 border-bottom: 1px solid var(--card-border-color);
4824 border-radius: 2px 2px 0 0; 4824 border-radius: 2px 2px 0 0;
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
4950 } 4950 }
4951 4951
4952 #footer a { 4952 #footer a {
4953 color: var(--google-blue-700); 4953 color: var(--google-blue-700);
4954 text-decoration: none; 4954 text-decoration: none;
4955 } 4955 }
4956 4956
4957 </style> 4957 </style>
4958 4958
4959 <iron-selector id="menu" selected="[[selectedPage]]" selectable=".page-item" attr-for-selected="path" fallback-selection="history" on-iron-activate="onSelec torActivate_"> 4959 <iron-selector id="menu" selected="[[selectedPage]]" selectable=".page-item" attr-for-selected="path" fallback-selection="history" on-iron-activate="onSelec torActivate_">
4960 <a href="/[[getQueryString_(route)]]" class="page-item" path="history"> 4960 <a href="/history/[[getQueryString_(route)]]" class="page-item" path="hist ory">
4961 $i18n{historyMenuItem} 4961 $i18n{historyMenuItem}
4962 <paper-ripple></paper-ripple> 4962 <paper-ripple></paper-ripple>
4963 </a> 4963 </a>
4964 <a href="/syncedTabs[[getQueryString_(route)]]" class="page-item" path="sy ncedTabs"> 4964 <a href="/history/syncedTabs[[getQueryString_(route)]]" class="page-item" path="syncedTabs">
4965 $i18n{openTabsMenuItem} 4965 $i18n{openTabsMenuItem}
4966 <paper-ripple></paper-ripple> 4966 <paper-ripple></paper-ripple>
4967 </a> 4967 </a>
4968 <div class="separator"></div> 4968 <div class="separator"></div>
4969 <a href="chrome://settings/clearBrowserData" on-tap="onClearBrowsingDataTa p_" id="clear-browsing-data"> 4969 <a href="chrome://settings/clearBrowserData" on-tap="onClearBrowsingDataTa p_" id="clear-browsing-data">
4970 $i18n{clearBrowsingData} 4970 $i18n{clearBrowsingData}
4971 <paper-ripple></paper-ripple> 4971 <paper-ripple></paper-ripple>
4972 </a> 4972 </a>
4973 <div id="footer" hidden="[[!showFooter]]"> 4973 <div id="footer" hidden="[[!showFooter]]">
4974 <div class="separator"></div> 4974 <div class="separator"></div>
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
5112 top: 0; 5112 top: 0;
5113 transition: opacity 500ms; 5113 transition: opacity 500ms;
5114 } 5114 }
5115 5115
5116 :host([toolbar-shadow_]) #drop-shadow { 5116 :host([toolbar-shadow_]) #drop-shadow {
5117 opacity: 1; 5117 opacity: 1;
5118 } 5118 }
5119 5119
5120 </style> 5120 </style>
5121 <app-location route="{{route_}}"></app-location> 5121 <app-location route="{{route_}}"></app-location>
5122 <app-route route="{{route_}}" pattern="/:page" data="{{routeData_}}" query-p arams="{{queryParams_}}"> 5122 <app-route route="{{route_}}" pattern="history/:page" data="{{routeData_}}" query-params="{{queryParams_}}">
5123 </app-route> 5123 </app-route>
5124 <history-toolbar id="toolbar" spinner-active="[[shouldShowSpinner_(queryStat e_.querying, 5124 <history-toolbar id="toolbar" spinner-active="[[shouldShowSpinner_(queryStat e_.querying,
5125 queryState_.incremental, 5125 queryState_.incremental,
5126 queryState_.searchTerm)]]" is-group ed-mode="{{grouped_}}" grouped-range="{{queryState_.range}}" search-term="{{quer yState_.searchTerm}}" query-start-time="[[queryResult_.info.queryStartTime]]" qu ery-end-time="[[queryResult_.info.queryEndTime]]" has-drawer="[[hasDrawer_]]" sh ow-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]"> 5126 queryState_.searchTerm)]]" is-group ed-mode="{{grouped_}}" grouped-range="{{queryState_.range}}" search-term="{{quer yState_.searchTerm}}" query-start-time="[[queryResult_.info.queryStartTime]]" qu ery-end-time="[[queryResult_.info.queryEndTime]]" has-drawer="[[hasDrawer_]]" sh ow-sync-notice="[[showSyncNotice_(hasSyncedResults, selectedPage_)]]">
5127 </history-toolbar> 5127 </history-toolbar>
5128 5128
5129 <div id="main-container"> 5129 <div id="main-container">
5130 <history-side-bar id="content-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" hidden$="[[hasDrawer_]]"> 5130 <history-side-bar id="content-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" hidden$="[[hasDrawer_]]">
5131 </history-side-bar> 5131 </history-side-bar>
5132 <iron-pages id="content" attr-for-selected="path" fallback-selection="hist ory" selected="[[getSelectedPage_(selectedPage_, items)]]" items="{{items}}"> 5132 <iron-pages id="content" attr-for-selected="path" fallback-selection="hist ory" selected="[[getSelectedPage_(selectedPage_, items)]]" items="{{items}}">
(...skipping 15 matching lines...) Expand all
5148 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer=""> 5148 <history-side-bar id="drawer-side-bar" selected-page="[[selectedPage_]]" route="[[route_]]" show-footer="[[showSidebarFooter]]" drawer="">
5149 </history-side-bar> 5149 </history-side-bar>
5150 </app-drawer> 5150 </app-drawer>
5151 </template> 5151 </template>
5152 5152
5153 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" > 5153 <iron-media-query query="(max-width: 1023px)" query-matches="{{hasDrawer_}}" >
5154 </iron-media-query> 5154 </iron-media-query>
5155 </template> 5155 </template>
5156 </dom-module> 5156 </dom-module>
5157 <script src="app.crisper.js"></script></body></html> 5157 <script src="app.crisper.js"></script></body></html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/app.html ('k') | chrome/browser/resources/md_history/browser_service.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698