| 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
|
| + };
|
| +});
|
|
|