[chromium-style] move methods out of headers
This commit is contained in:
parent
f1587da480
commit
27cee90e5e
10 changed files with 45 additions and 22 deletions
|
@ -58,6 +58,13 @@ BrowserClient::BrowserClient() : browser_main_parts_(nullptr) {
|
|||
|
||||
BrowserClient::~BrowserClient() {}
|
||||
|
||||
|
||||
void BrowserClient::WebNotificationAllowed(
|
||||
int render_process_id,
|
||||
const base::Callback<void(bool, bool)>& callback) {
|
||||
callback.Run(false, true);
|
||||
}
|
||||
|
||||
NotificationPresenter* BrowserClient::GetNotificationPresenter() {
|
||||
if (!notification_presenter_) {
|
||||
// Create a new presenter if on OS X, Linux, or Windows 7+
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue