| 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 30dd34148dacc6d7a3636950b45f88c1d72603e0..6b165e8779dc19b56f091dc256643a56eddd4eb2 100644
|
| --- a/third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp
|
| +++ b/third_party/WebKit/Source/bindings/core/v8/ExceptionMessages.cpp
|
| @@ -77,20 +77,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) {
|
|
|