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

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: publish callbacks in ntp4 namespace 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
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..e9fa3df722f10ed063a636aa18a5e8147ff23116
--- /dev/null
+++ b/chrome/browser/resources/aura/app_list/apps_view.js
@@ -0,0 +1,29 @@
+// 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();
+ }
+
+ AppsView.prototype = {
+ __proto__: ntp4.PageListView.prototype
+ };
+
+ // Return an object with all the exports
+ return {
+ AppsView: AppsView
+ };
+});

Powered by Google App Engine
This is Rietveld 408576698