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

Side by Side Diff: chrome/browser/resources/md_history/side_bar.html

Issue 2238163002: [MD History] Add UMA stats for switching views and the CBD button. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@start_focus_in_search_bar
Patch Set: fix_test Created 4 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
OLDNEW
1 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html"> 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f lex-layout.html">
3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-selector/iron-sele ctor.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp le.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-ripple/paper-ripp le.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html "> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html ">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography .html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/typography .html">
7 <link rel="import" href="chrome://history/browser_service.html"> 7 <link rel="import" href="chrome://history/browser_service.html">
8 <link rel="import" href="chrome://history/shared_style.html"> 8 <link rel="import" href="chrome://history/shared_style.html">
9 9
10 <dom-module id="history-side-bar"> 10 <dom-module id="history-side-bar">
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 line-height: 20px; 72 line-height: 20px;
73 margin: 24px 0; 73 margin: 24px 0;
74 } 74 }
75 75
76 #footer a { 76 #footer a {
77 color: var(--google-blue-700); 77 color: var(--google-blue-700);
78 text-decoration: none; 78 text-decoration: none;
79 } 79 }
80 </style> 80 </style>
81 81
82 <iron-selector id="menu" selected="{{selectedPage}}" 82 <iron-selector id="menu" selected="[[selectedPage]]"
83 selectable=".page-item" attr-for-selected="path" 83 selectable=".page-item" attr-for-selected="path"
84 fallback-selection="history" 84 fallback-selection="history"
85 on-iron-activate="onSelectorActivate_"> 85 on-iron-activate="onSelectorActivate_">
86 <a href="/[[getQueryString_(route)]]" class="page-item" path="history"> 86 <a href="/[[getQueryString_(route)]]" class="page-item" path="history">
87 $i18n{historyMenuItem} 87 $i18n{historyMenuItem}
88 <paper-ripple></paper-ripple> 88 <paper-ripple></paper-ripple>
89 </a> 89 </a>
90 <a href="/syncedTabs[[getQueryString_(route)]]" class="page-item" 90 <a href="/syncedTabs[[getQueryString_(route)]]" class="page-item"
91 path="syncedTabs"> 91 path="syncedTabs">
92 $i18n{openTabsMenuItem} 92 $i18n{openTabsMenuItem}
93 <paper-ripple></paper-ripple> 93 <paper-ripple></paper-ripple>
94 </a> 94 </a>
95 <div class="separator"></div> 95 <div class="separator"></div>
96 <a href="chrome://settings/clearBrowserData" 96 <a href="chrome://settings/clearBrowserData"
97 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data"> 97 on-tap="onClearBrowsingDataTap_" id="clear-browsing-data">
98 $i18n{clearBrowsingData} 98 $i18n{clearBrowsingData}
99 <paper-ripple></paper-ripple> 99 <paper-ripple></paper-ripple>
100 </a> 100 </a>
101 <div id="footer" hidden="[[!showFooter]]"> 101 <div id="footer" hidden="[[!showFooter]]">
102 <div class="separator"></div> 102 <div class="separator"></div>
103 <div id="footer-text">$i18nRaw{sidebarFooter}</div> 103 <div id="footer-text">$i18nRaw{sidebarFooter}</div>
104 </div> 104 </div>
105 </iron-selector> 105 </iron-selector>
106 </template> 106 </template>
107 <script src="chrome://history/side_bar.js"></script> 107 <script src="chrome://history/side_bar.js"></script>
108 </dom-module> 108 </dom-module>
OLDNEW
« no previous file with comments | « chrome/browser/resources/md_history/list_container.js ('k') | chrome/browser/resources/md_history/side_bar.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698