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

Unified Diff: Source/devtools/front_end/sources/jsdifflib.js

Issue 366633002: DevTools: Move jsdifflib to "sources", extract "toolbox" module (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove trailing whitespace in jsdifflib.js Created 6 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/sources/jsdifflib.js
diff --git a/Source/devtools/front_end/jsdifflib.js b/Source/devtools/front_end/sources/jsdifflib.js
similarity index 99%
rename from Source/devtools/front_end/jsdifflib.js
rename to Source/devtools/front_end/sources/jsdifflib.js
index f86a8f7a4db02bda7368f97dff664a3b28c885be..36076ae8002fa4317e4471bdbc8650bd0fae2b05 100644
--- a/Source/devtools/front_end/jsdifflib.js
+++ b/Source/devtools/front_end/sources/jsdifflib.js
@@ -3,10 +3,10 @@
*
* Copyright (c) 2007, Snowtide Informatics Systems, Inc.
* All rights reserved.
- *
+ *
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
- *
+ *
* * Redistributions of source code must retain the above copyright notice, this
* list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
@@ -96,7 +96,7 @@ difflib = {
// replacement for python's dict.get function -- need easy default values
__dictget: function (dict, key, defaultValue) {
return dict.hasOwnProperty(key) ? dict[key] : defaultValue;
- },
+ },
SequenceMatcher: function (a, b, isjunk) {
this.set_seqs = function (a, b) {
« no previous file with comments | « Source/devtools/front_end/sources/SourcesPanel.js ('k') | Source/devtools/front_end/toolbox/InspectedPagePlaceholder.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698