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

Unified Diff: chrome/browser/resources/aura/app_list/apps_view.js

Issue 8423055: [Aura] Initial app list webui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove grabber.js Created 9 years, 1 month 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
« no previous file with comments | « chrome/browser/resources/aura/app_list/app_list.js ('k') | chrome/browser/resources/ntp4/card_slider.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/aura/app_list/apps_view.js
diff --git a/chrome/browser/resources/aura/app_list/apps_view.js b/chrome/browser/resources/aura/app_list/apps_view.js
new file mode 100644
index 0000000000000000000000000000000000000000..8c54e49b54b568e758869c2dfe7cbe7623d7852a
--- /dev/null
+++ b/chrome/browser/resources/aura/app_list/apps_view.js
@@ -0,0 +1,31 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @fileoverview AppListView implementation.
+ */
+
+cr.define('appList', function() {
+ 'use strict';
+
+ /**
+ * Creates an AppsView object.
+ * @constructor
+ * @extends {PageListView}
+ */
+ function AppsView() {
+ this.initialize(getRequiredElement('page-list'),
+ getRequiredElement('dot-list'),
+ getRequiredElement('card-slider-frame'));
+ }
+
+ AppsView.prototype = {
+ __proto__: ntp4.PageListView.prototype
+ };
+
+ // Return an object with all the exports
+ return {
+ AppsView: AppsView
+ };
+});
« no previous file with comments | « chrome/browser/resources/aura/app_list/app_list.js ('k') | chrome/browser/resources/ntp4/card_slider.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698