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

Unified Diff: chrome/browser/resources/md_history/list_container.html

Issue 2684693004: MD History: Remove list-container and list-behavior (Closed)
Patch Set: Rename listeners Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/md_history/list_container.html
diff --git a/chrome/browser/resources/md_history/list_container.html b/chrome/browser/resources/md_history/list_container.html
deleted file mode 100644
index 4ccd8f4caa1bde79fe8a05819208ded309d98a32..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/md_history/list_container.html
+++ /dev/null
@@ -1,64 +0,0 @@
-<link rel="import" href="chrome://resources/html/polymer.html">
-<link rel="import" href="chrome://resources/cr_elements/cr_lazy_render/cr_lazy_render.html">
-<link rel="import" href="chrome://resources/cr_elements/shared_style_css.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-announcer/iron-a11y-announcer.html">
-<link rel="import" href="chrome://resources/polymer/v1_0/iron-pages/iron-pages.html">
-<link rel="import" href="chrome://history/browser_service.html">
-<link rel="import" href="chrome://history/history_list.html">
-<link rel="import" href="chrome://history/shared_style.html">
-
-<!-- Lazy loaded: cr-dialog, cr-action-menu, paper-button. -->
-
-<dom-module id="history-list-container">
- <template>
- <style include="shared-style cr-shared-style">
- :host {
- display: block;
- height: 100%;
- overflow: hidden;
- }
-
- history-list {
- height: 100%;
- }
-
- dialog .body {
- white-space: pre-wrap;
- }
- </style>
- <history-list id="infinite-list"
- querying="[[queryState.querying]]"
- searched-term="[[queryResult.info.term]]">
- </history-list>
-
- <template is="cr-lazy-render" id="dialog">
- <dialog is="cr-dialog">
- <div class="title">$i18n{removeSelected}</div>
- <div class="body">$i18n{deleteWarning}</div>
- <div class="button-container">
- <paper-button class="cancel-button" on-tap="onDialogCancelTap_">
- $i18n{cancel}
- </paper-button>
- <paper-button class="action-button" on-tap="onDialogConfirmTap_">
- $i18n{deleteConfirm}
- </paper-button>
- </div>
- </dialog>
- </template>
-
- <template is="cr-lazy-render" id="sharedMenu">
- <dialog is="cr-action-menu">
- <button id="menuMoreButton" class="dropdown-item"
- on-tap="onMoreFromSiteTap_">
- $i18n{moreFromSite}
- </button>
- <button id="menuRemoveButton" class="dropdown-item"
- hidden$="[[!canDeleteHistory_]]"
- on-tap="onRemoveFromHistoryTap_">
- $i18n{removeFromHistory}
- </button>
- </dialog>
- </template>
- </template>
- <script src="chrome://history/list_container.js"></script>
-</dom-module>
« no previous file with comments | « chrome/browser/resources/md_history/history_list_behavior.js ('k') | chrome/browser/resources/md_history/list_container.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698