It is not chrome dependent. Server sending response to requests. It starts with HTTP protocol version (HTTP/1.1), staus code (200) and status message (for code 200 usually OK). Example response:
HTTP/1.1 200 OK
Another Example
HTTP/1.1 404 Not Found
But it is not defined that response for 200 must be OK and for 404 Not Found. It could be anything. For example another one valid response for code 200.
HTTP/1.1 200 My own status message
You can write simple node.js server which sends My own status message instead of OK.
var http = require('http');
http.createServer(function (req, res) {
res.statusMessage = "My own status message"; // setting custom status message
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('Hello World\n');
}).listen(1337);
and see it in developer tools

So the answer is: There are no differences is if the response shows with OK or something other, or nothing. 200 means OK and this the most important information. Status message is only human readable transcription of 200 and it is not important for browser.