| 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) {
|
|
|