| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 #include "WebPrintParams.h" | 56 #include "WebPrintParams.h" |
| 57 #include "WebRange.h" | 57 #include "WebRange.h" |
| 58 #include "WebScriptController.h" | 58 #include "WebScriptController.h" |
| 59 #include "WebTestDelegate.h" | 59 #include "WebTestDelegate.h" |
| 60 #include "WebTestInterfaces.h" | 60 #include "WebTestInterfaces.h" |
| 61 #include "WebTestRunner.h" | 61 #include "WebTestRunner.h" |
| 62 #include "WebUserGestureIndicator.h" | 62 #include "WebUserGestureIndicator.h" |
| 63 #include "WebUserMediaClientMock.h" | 63 #include "WebUserMediaClientMock.h" |
| 64 #include "WebView.h" | 64 #include "WebView.h" |
| 65 // FIXME: Including platform_canvas.h here is a layering violation. | 65 // FIXME: Including platform_canvas.h here is a layering violation. |
| 66 #include <cctype> |
| 66 #include "skia/ext/platform_canvas.h" | 67 #include "skia/ext/platform_canvas.h" |
| 67 #include <cctype> | |
| 68 #include <public/WebCString.h> | 68 #include <public/WebCString.h> |
| 69 #include <public/WebURLError.h> | 69 #include <public/WebURLError.h> |
| 70 #include <public/WebURLRequest.h> | 70 #include <public/WebURLRequest.h> |
| 71 #include <public/WebURLResponse.h> | 71 #include <public/WebURLResponse.h> |
| 72 | 72 |
| 73 using namespace WebKit; | 73 using namespace WebKit; |
| 74 using namespace std; | 74 using namespace std; |
| 75 | 75 |
| 76 namespace WebTestRunner { | 76 namespace WebTestRunner { |
| 77 | 77 |
| (...skipping 1407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1485 { | 1485 { |
| 1486 if (m_testInterfaces->testRunner()->shouldInterceptPostMessage()) { | 1486 if (m_testInterfaces->testRunner()->shouldInterceptPostMessage()) { |
| 1487 m_delegate->printMessage("intercepted postMessage\n"); | 1487 m_delegate->printMessage("intercepted postMessage\n"); |
| 1488 return true; | 1488 return true; |
| 1489 } | 1489 } |
| 1490 | 1490 |
| 1491 return false; | 1491 return false; |
| 1492 } | 1492 } |
| 1493 | 1493 |
| 1494 } | 1494 } |
| OLD | NEW |