Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: public/platform/WebUnitTestSupport.h

Issue 1158913002: Replacing the 'return 0;' statements with 'return nullptr;' (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « public/platform/WebServiceWorkerRegistration.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « public/platform/WebServiceWorkerRegistration.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698