diff options
Diffstat (limited to 'content/browser/devtools/devtools_http_handler_impl.cc')
-rw-r--r-- | content/browser/devtools/devtools_http_handler_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/devtools/devtools_http_handler_impl.cc b/content/browser/devtools/devtools_http_handler_impl.cc index 5bd8887..4313668 100644 --- a/content/browser/devtools/devtools_http_handler_impl.cc +++ b/content/browser/devtools/devtools_http_handler_impl.cc @@ -576,7 +576,7 @@ void ServerWrapper::OnHttpRequest(int connection_id, return; } - if (info.path == "" || info.path == "/") { + if (info.path.empty() || info.path == "/") { // Discovery page request. BrowserThread::PostTask( BrowserThread::UI, |