Skip to content

Commit

Permalink
fix(chrome_browser_proxy_resolver): fix spelling errors
Browse files Browse the repository at this point in the history
BUG=None
TEST=None

change dbug to dbus

Change-Id: I50c71c85dc48c3ef6defc8092003ab202c4783f3
Reviewed-on: https://gerrit.chromium.org/gerrit/46552
Reviewed-by: Don Garrett <[email protected]>
Reviewed-by: Brandon Philips <[email protected]>
Tested-by: Brandon Philips <[email protected]>
Commit-Queue: Brandon Philips <[email protected]>
  • Loading branch information
Brandon Philips authored and ChromeBot committed Mar 27, 2013
1 parent 04ba0eb commit 962873e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions chrome_browser_proxy_resolver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ bool ChromeBrowserProxyResolver::GetProxiesForUrl(const string& url,
dbus_got_error = false;

if (dbus_success) {
LOG(INFO) << "dbug_g_proxy_call succeeded!";
LOG(INFO) << "dbus_g_proxy_call succeeded!";
} else {
if (error) {
// Register the fact that we did receive an error, as it is nullified
Expand All @@ -175,14 +175,14 @@ bool ChromeBrowserProxyResolver::GetProxiesForUrl(const string& url,
<< utils::GetAndFreeGError(&error)
<< " Continuing with no proxy.";
} else {
LOG(WARNING) << "dbug_g_proxy_call failed with no error string, "
LOG(WARNING) << "dbus_g_proxy_call failed with no error string, "
"continuing with no proxy.";
}
timeout = 0;
}
} while (!(dbus_success || dbus_got_error || dbus_reinit));
} else {
LOG(WARNING) << "dbug proxy object missing, continuing with no proxy.";
LOG(WARNING) << "dbus proxy object missing, continuing with no proxy.";
timeout = 0;
}

Expand Down

0 comments on commit 962873e

Please sign in to comment.