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

Unified Diff: chrome/browser/resources/options/language_dictionary_overlay.js

Issue 2939273002: DO NOT SUBMIT: what chrome/browser/resources/ could eventually look like with clang-format (Closed)
Patch Set: Created 3 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: chrome/browser/resources/options/language_dictionary_overlay.js
diff --git a/chrome/browser/resources/options/language_dictionary_overlay.js b/chrome/browser/resources/options/language_dictionary_overlay.js
index 6f7a4a2ccb8f0fbad25d18cc50e56711cdf71e45..96c27352e65b57ebd3460d0876aad314920eccf2 100644
--- a/chrome/browser/resources/options/language_dictionary_overlay.js
+++ b/chrome/browser/resources/options/language_dictionary_overlay.js
@@ -14,9 +14,10 @@ cr.define('options', function() {
* @extends {cr.ui.pageManager.Page}
*/
function EditDictionaryOverlay() {
- Page.call(this, 'editDictionary',
- loadTimeData.getString('languageDictionaryOverlayPage'),
- 'language-dictionary-overlay-page');
+ Page.call(
+ this, 'editDictionary',
+ loadTimeData.getString('languageDictionaryOverlayPage'),
+ 'language-dictionary-overlay-page');
}
cr.addSingletonGetter(EditDictionaryOverlay);
@@ -67,8 +68,8 @@ cr.define('options', function() {
e.stopPropagation();
};
- this.noMatchesLabel_ = getRequiredElement(
- 'language-dictionary-overlay-no-matches');
+ this.noMatchesLabel_ =
+ getRequiredElement('language-dictionary-overlay-no-matches');
$('language-dictionary-overlay-done-button').onclick = function(e) {
PageManager.closeOverlay();
@@ -111,7 +112,5 @@ cr.define('options', function() {
return EditDictionaryOverlay.getInstance().wordList_;
};
- return {
- EditDictionaryOverlay: EditDictionaryOverlay
- };
+ return {EditDictionaryOverlay: EditDictionaryOverlay};
});

Powered by Google App Engine
This is Rietveld 408576698