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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/components/Linkifier.js

Issue 2546473005: [DevTools] Remove unnecessary checks for project types. (Closed)
Patch Set: fixed comment Created 4 years 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 return; 766 return;
767 } 767 }
768 contentProvider.requestContent().then(doSave.bind(null, forceSaveAs)); 768 contentProvider.requestContent().then(doSave.bind(null, forceSaveAs));
769 } 769 }
770 770
771 contextMenu.appendSeparator(); 771 contextMenu.appendSeparator();
772 contextMenu.appendItem(Common.UIString('Save'), save.bind(null, false)); 772 contextMenu.appendItem(Common.UIString('Save'), save.bind(null, false));
773 773
774 if (contentProvider instanceof Workspace.UISourceCode) { 774 if (contentProvider instanceof Workspace.UISourceCode) {
775 var uiSourceCode = /** @type {!Workspace.UISourceCode} */ (contentProvider ); 775 var uiSourceCode = /** @type {!Workspace.UISourceCode} */ (contentProvider );
776 if (uiSourceCode.project().type() !== Workspace.projectTypes.FileSystem && 776 if (!uiSourceCode.project().canSetFileContent())
777 uiSourceCode.project().type() !== Workspace.projectTypes.Snippets)
778 contextMenu.appendItem(Common.UIString.capitalize('Save ^as...'), save.b ind(null, true)); 777 contextMenu.appendItem(Common.UIString.capitalize('Save ^as...'), save.b ind(null, true));
779 } 778 }
780 } 779 }
781 }; 780 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698