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

Side by Side Diff: mojo/apps/js/main.js

Issue 219583003: Mojo: Move mojo/public/shell to mojo/public/{cpp,interfaces}/shell. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | mojo/examples/aura_demo/aura_demo.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 define([ 5 define([
6 'console', 6 'console',
7 'monotonic_clock', 7 'monotonic_clock',
8 'timer', 8 'timer',
9 'mojo/public/bindings/js/connection', 9 'mojo/public/bindings/js/connection',
10 'mojo/bindings/js/core', 10 'mojo/bindings/js/core',
11 'mojo/apps/js/bindings/gl', 11 'mojo/apps/js/bindings/gl',
12 'mojo/apps/js/bindings/threading', 12 'mojo/apps/js/bindings/threading',
13 'mojo/services/native_viewport/native_viewport.mojom', 13 'mojo/services/native_viewport/native_viewport.mojom',
14 'mojo/public/shell/shell.mojom', 14 'mojo/public/interfaces/shell/shell.mojom',
15 ], function(console, 15 ], function(console,
16 monotonicClock, 16 monotonicClock,
17 timer, 17 timer,
18 connection, 18 connection,
19 core, 19 core,
20 gljs, 20 gljs,
21 threading, 21 threading,
22 nativeViewport, 22 nativeViewport,
23 shell) { 23 shell) {
24 24
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 386
387 GLES2ClientImpl.prototype.contextLost = function() { 387 GLES2ClientImpl.prototype.contextLost = function() {
388 console.log('GLES2ClientImpl.prototype.contextLost'); 388 console.log('GLES2ClientImpl.prototype.contextLost');
389 }; 389 };
390 390
391 391
392 return function(handle) { 392 return function(handle) {
393 new connection.Connection(handle, SampleApp, shell.ShellProxy); 393 new connection.Connection(handle, SampleApp, shell.ShellProxy);
394 }; 394 };
395 }); 395 });
OLDNEW
« no previous file with comments | « no previous file | mojo/examples/aura_demo/aura_demo.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698