Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4877)

Unified Diff: chrome/browser/ui/webui/options/browser_options_handler.cc

Issue 11434074: browser: Move FindBrowserWithWebContents() into chrome namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/options/browser_options_handler.cc
diff --git a/chrome/browser/ui/webui/options/browser_options_handler.cc b/chrome/browser/ui/webui/options/browser_options_handler.cc
index cbe1829f3be0c7f22e0b4824d8ff97aa86a25923..adff348a2268ff75e411bc35ec99a1356d81bbc9 100644
--- a/chrome/browser/ui/webui/options/browser_options_handler.cc
+++ b/chrome/browser/ui/webui/options/browser_options_handler.cc
@@ -966,7 +966,7 @@ void BrowserOptionsHandler::CreateProfile(const ListValue* args) {
bool create_box_checked;
Browser* browser =
- browser::FindBrowserWithWebContents(web_ui()->GetWebContents());
+ chrome::FindBrowserWithWebContents(web_ui()->GetWebContents());
chrome::HostDesktopType desktop_type = chrome::HOST_DESKTOP_TYPE_NATIVE;
if (browser)
desktop_type = browser->host_desktop_type();

Powered by Google App Engine
This is Rietveld 408576698