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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * @fileoverview AppListView implementation.
7 */
8
9 cr.define('appList', function() {
10 'use strict';
11
12 /**
13 * Creates an AppsView object.
14 * @constructor
15 * @extends {PageListView}
16 */
17 function AppsView() {
18 this.initialize();
19 }
20
21 AppsView.prototype = {
22 __proto__: ntp4.PageListView.prototype
23 };
24
25 // Return an object with all the exports
26 return {
27 AppsView: AppsView
28 };
29 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698