GetMyHostName is renamed GetHostName to match the name of
the Unix/Winsock function gethostname.

R=eroman
Review URL: http://codereview.chromium.org/42590

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@12466 0039d316-1c4b-4281-b951-d872f2087c98
diff --git a/net/base/net_util.h b/net/base/net_util.h
index 0b419bf..3305f498 100644
--- a/net/base/net_util.h
+++ b/net/base/net_util.h
@@ -57,7 +57,7 @@
 std::string NetAddressToString(const struct addrinfo* net_address);
 
 // Returns the hostname of the current system. Returns empty string on failure.
-std::string GetMyHostName();
+std::string GetHostName();
 
 // Return the value of the HTTP response header with name 'name'.  'headers'
 // should be in the format that URLRequest::GetResponseHeaders() returns.