| Index: chrome/browser/resources/md_history/app.vulcanized.html
|
| diff --git a/chrome/browser/resources/md_history/app.vulcanized.html b/chrome/browser/resources/md_history/app.vulcanized.html
|
| index 4925228d42512cd86ded675f290d54cd9119ea8a..a091e3513dc19766c965c29799b12316e6033851 100644
|
| --- a/chrome/browser/resources/md_history/app.vulcanized.html
|
| +++ b/chrome/browser/resources/md_history/app.vulcanized.html
|
| @@ -3003,6 +3003,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| </template>
|
|
|
| </dom-module>
|
| +<link rel="import" href="chrome://history/constants.html">
|
| <dom-module id="iron-collapse" assetpath="chrome://resources/polymer/v1_0/iron-collapse/">
|
|
|
| <template>
|
| @@ -3389,7 +3390,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| <span id="time-accessed">[[item.readableTimestamp]]</span>
|
| <div class="website-icon" id="icon"></div>
|
| <div id="title-and-domain">
|
| - <a href="[[item.url]]" id="title" class="website-title" title="[[cropItemTitle_(item.title)]]">
|
| + <a href="[[item.url]]" id="title" class="website-title" title="[[cropItemTitle_(item.title)]]" on-click="onLinkClick_" on-contextmenu="onLinkRightClick_">
|
| <history-searched-label title="[[cropItemTitle_(item.title)]]" search-term="[[searchTerm]]"></history-searched-label>
|
| </a>
|
| <span id="domain">[[item.domain]]</span>
|
| @@ -3410,7 +3411,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| </div>
|
| </template>
|
| </dom-module>
|
| -<link rel="import" href="chrome://history/constants.html">
|
| <dom-module id="history-grouped-list" assetpath="chrome://history/">
|
| <template>
|
| <style include="shared-style">
|
| @@ -3810,10 +3810,10 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
| <template is="history-lazy-render" id="menu">
|
| <cr-shared-menu>
|
| - <paper-item class="menu-item" on-tap="onOpenAllTap_">
|
| + <paper-item class="menu-item" id="open-all" on-tap="onOpenAllTap_">
|
| $i18n{openAll}
|
| </paper-item>
|
| - <paper-item class="menu-item" on-tap="onDeleteSessionTap_">
|
| + <paper-item class="menu-item" id="delete-session" on-tap="onDeleteSessionTap_">
|
| $i18n{deleteSession}
|
| </paper-item>
|
| </cr-shared-menu>
|
| @@ -3976,7 +3976,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| <history-list-container id="history" query-state="{{queryState_}}" query-result="[[queryResult_]]" grouped="[[grouped_]]" grouped-range="{{queryState_.range}}" path="history">
|
| </history-list-container>
|
| <template is="dom-if" if="[[syncedTabsSelected_(selectedPage_)]]">
|
| - <history-synced-device-manager id="synced-devices" session-list="[[queryResult_.sessionList]]" search-term="[[queryState_.searchTerm]]" path="syncedTabs">
|
| + <history-synced-device-manager id="synced-devices" session-list="[[queryResult_.sessionList]]" search-term="[[queryState_.searchTerm]]" sign-in-state="[[isUserSignedIn_]]" path="syncedTabs">
|
| </history-synced-device-manager>
|
| </template>
|
| </iron-pages>
|
|
|