Title: [155007] branches/safari-537.60-branch/Source/WebKit/win/WebFrame.cpp
Revision
155007
Author
lforsch...@apple.com
Date
2013-09-03 16:04:12 -0700 (Tue, 03 Sep 2013)

Log Message

Windows build fix.

Modified Paths


Diff

Modified: branches/safari-537.60-branch/Source/WebKit/win/WebFrame.cpp (155006 => 155007)


--- branches/safari-537.60-branch/Source/WebKit/win/WebFrame.cpp	2013-09-03 22:36:16 UTC (rev 155006)
+++ branches/safari-537.60-branch/Source/WebKit/win/WebFrame.cpp	2013-09-03 23:04:12 UTC (rev 155007)
@@ -1669,12 +1669,12 @@
     return ResourceError(String(WebKitErrorDomain), WebKitErrorFrameLoadInterruptedByPolicyChange, request.url().string(), WEB_UI_STRING("Frame load interrupted", "WebKitErrorFrameLoadInterruptedByPolicyChange description"));
 }
 
-ResourceError WebFrame::cannotShowMIMETypeError(const ResourceResponse&)
+ResourceError WebFrame::cannotShowMIMETypeError(const ResourceResponse& response)
 {
     return ResourceError(String(), WebKitErrorCannotShowMIMEType, response.url().string(), WEB_UI_STRING("Content with specified MIME type can’t be shown", "WebKitErrorCannotShowMIMEType description"));
 }
 
-ResourceError WebFrame::fileDoesNotExistError(const ResourceResponse&)
+ResourceError WebFrame::fileDoesNotExistError(const ResourceResponse& response)
 {
     return ResourceError(String(WebURLErrorDomain), -1100, response.url().string(), String("File does not exist."));
 }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to