OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. 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 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 // Causes all pending asynchronous requests to be served. When this method | 53 // Causes all pending asynchronous requests to be served. When this method |
54 // returns all the pending requests have been processed. | 54 // returns all the pending requests have been processed. |
55 virtual void serveAsynchronousMockedRequests() { } | 55 virtual void serveAsynchronousMockedRequests() { } |
56 | 56 |
57 // Returns the root directory of the WebKit code. | 57 // Returns the root directory of the WebKit code. |
58 virtual WebString webKitRootDir() { return WebString(); } | 58 virtual WebString webKitRootDir() { return WebString(); } |
59 | 59 |
60 // Constructs a WebLayerTreeView set up with reasonable defaults for | 60 // Constructs a WebLayerTreeView set up with reasonable defaults for |
61 // testing. | 61 // testing. |
62 virtual WebLayerTreeView* createLayerTreeViewForTesting() { return 0; } | 62 virtual WebLayerTreeView* createLayerTreeViewForTesting() { return nullptr;
} |
63 | 63 |
64 virtual WebData readFromFile(const WebString& path) { return WebData(); } | 64 virtual WebData readFromFile(const WebString& path) { return WebData(); } |
65 | 65 |
66 // Gets the blob items from the blob handle's uuid. | 66 // Gets the blob items from the blob handle's uuid. |
67 // The ownership of WebBlobData::Items is not transferred. | 67 // The ownership of WebBlobData::Items is not transferred. |
68 virtual bool getBlobItems(const WebString& uuid, WebVector<WebBlobData::Item
*>*) { return false; } | 68 virtual bool getBlobItems(const WebString& uuid, WebVector<WebBlobData::Item
*>*) { return false; } |
69 | 69 |
70 virtual void enterRunLoop() { } | 70 virtual void enterRunLoop() { } |
71 virtual void exitRunLoop() { } | 71 virtual void exitRunLoop() { } |
72 }; | 72 }; |
73 | 73 |
74 } | 74 } |
75 | 75 |
76 #endif // WebUnitTestSupport_h | 76 #endif // WebUnitTestSupport_h |
OLD | NEW |