| Index: chrome/browser/browser_about_handler.cc
|
| diff --git a/chrome/browser/browser_about_handler.cc b/chrome/browser/browser_about_handler.cc
|
| index 42a453a8018f8a5f030cbb5a463f1ea1c965b9ca..81b19ca50b3cd80797b5df4d2b83eab985781045 100644
|
| --- a/chrome/browser/browser_about_handler.cc
|
| +++ b/chrome/browser/browser_about_handler.cc
|
| @@ -103,13 +103,13 @@ bool WillHandleBrowserAboutURL(GURL* url,
|
| bool HandleNonNavigationAboutURL(const GURL& url) {
|
| const std::string spec(url.spec());
|
|
|
| - if (LowerCaseEqualsASCII(spec, chrome::kChromeUIRestartURL)) {
|
| + if (base::LowerCaseEqualsASCII(spec, chrome::kChromeUIRestartURL)) {
|
| // Call AttemptRestart after chrome::Navigate() completes to avoid access of
|
| // gtk objects after they are destroyed by BrowserWindowGtk::Close().
|
| base::MessageLoop::current()->PostTask(FROM_HERE,
|
| base::Bind(&chrome::AttemptRestart));
|
| return true;
|
| - } else if (LowerCaseEqualsASCII(spec, chrome::kChromeUIQuitURL)) {
|
| + } else if (base::LowerCaseEqualsASCII(spec, chrome::kChromeUIQuitURL)) {
|
| base::MessageLoop::current()->PostTask(FROM_HERE,
|
| base::Bind(&chrome::AttemptExit));
|
| return true;
|
|
|