Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CHROME_BROWSER_UI_WEBUI_SIGNIN_GET_DESKTOP_BROWSER_H_ | |
| 6 #define CHROME_BROWSER_UI_WEBUI_SIGNIN_GET_DESKTOP_BROWSER_H_ | |
| 7 | |
| 8 namespace signin { | |
|
tommycli
2016/08/24 17:36:41
Can this file be consolidated with get_auth_frame
Jane
2016/08/25 19:19:35
Done. Code-wise this makes a lot of sense, I just
| |
| 9 | |
| 10 // Gets the browser containing the web UI; if none is found, returns the last | |
| 11 // active browser for web UI's profile. | |
| 12 Browser* GetDesktopBrowser(content::WebUI* web_ui); | |
| 13 | |
| 14 } // namespace signin | |
| 15 | |
| 16 #endif // CHROME_BROWSER_UI_WEBUI_SIGNIN_GET_DESKTOP_BROWSER_H_ | |
| OLD | NEW |