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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp

Issue 2940933003: DO NOT SUBMIT results of new 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: third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp
diff --git a/third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp b/third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp
index 847db3e9bae42ba239bfe07f1cd7930512fb68a9..403e018be401ad2f0f8ad6c39c2080ba6b0d59a4 100644
--- a/third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp
+++ b/third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp
@@ -81,20 +81,20 @@ String ExceptionMessages::FailedToDelete(const char* property,
String ExceptionMessages::FailedToGetIndexed(const char* type,
const String& detail) {
- return "Failed to read an indexed property from '" + String(type) + "': " +
- detail;
+ return "Failed to read an indexed property from '" + String(type) +
+ "': " + detail;
}
String ExceptionMessages::FailedToSetIndexed(const char* type,
const String& detail) {
- return "Failed to set an indexed property on '" + String(type) + "': " +
- detail;
+ return "Failed to set an indexed property on '" + String(type) +
+ "': " + detail;
}
String ExceptionMessages::FailedToDeleteIndexed(const char* type,
const String& detail) {
- return "Failed to delete an indexed property from '" + String(type) + "': " +
- detail;
+ return "Failed to delete an indexed property from '" + String(type) +
+ "': " + detail;
}
String ExceptionMessages::ConstructorNotCallableAsFunction(const char* type) {

Powered by Google App Engine
This is Rietveld 408576698