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

Side by Side Diff: native_client_sdk/src/resources/common.js

Issue 23919004: [NaCl SDK] Create a resources/ directory and move files to it. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: move httpd.cmd too Created 7 years, 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Set to true when the Document is loaded IFF "test=true" is in the query 5 // Set to true when the Document is loaded IFF "test=true" is in the query
6 // string. 6 // string.
7 var isTest = false; 7 var isTest = false;
8 8
9 // Set to true when loading a "Release" NaCl module, false when loading a 9 // Set to true when loading a "Release" NaCl module, false when loading a
10 // "Debug" NaCl module. 10 // "Debug" NaCl module.
(...skipping 419 matching lines...) Expand 10 before | Expand all | Expand 10 after
430 var path = pathFormat.replace('{tc}', tc).replace('{config}', config); 430 var path = pathFormat.replace('{tc}', tc).replace('{config}', config);
431 431
432 isTest = searchVars.test === 'true'; 432 isTest = searchVars.test === 'true';
433 isRelease = path.toLowerCase().indexOf('release') != -1; 433 isRelease = path.toLowerCase().indexOf('release') != -1;
434 434
435 loadFunction(body.dataset.name, tc, path, body.dataset.width, 435 loadFunction(body.dataset.name, tc, path, body.dataset.width,
436 body.dataset.height, attrs); 436 body.dataset.height, attrs);
437 } 437 }
438 } 438 }
439 }); 439 });
OLDNEW
« no previous file with comments | « native_client_sdk/src/resources/button_close_hover.png ('k') | native_client_sdk/src/resources/favicon.ico » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698