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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/common/UIString.js

Issue 2469113002: DevTools: clang format all the source + clang config landed. (Closed)
Patch Set: for landing Created 4 years, 1 month 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 3 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
4 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). 4 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com).
5 * Copyright (C) 2009 Joseph Pecoraro 5 * Copyright (C) 2009 Joseph Pecoraro
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 10 *
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 * @return {string} 100 * @return {string}
101 */ 101 */
102 format(vararg) { 102 format(vararg) {
103 return String 103 return String
104 .format( 104 .format(
105 this._localizedFormat, arguments, String.standardFormatters, '', Web Inspector.UIStringFormat._append, 105 this._localizedFormat, arguments, String.standardFormatters, '', Web Inspector.UIStringFormat._append,
106 this._tokenizedFormat) 106 this._tokenizedFormat)
107 .formattedResult; 107 .formattedResult;
108 } 108 }
109 }; 109 };
110
111
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698