fix https://github.com/brave/brave-browser/issues/16969 browser/brave_browser_main_loop.cc is content layer. it should not include files from chrome/.
18 lines
528 B
C++
18 lines
528 B
C++
/* Copyright 2019 The Brave Authors. All rights reserved.
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "brave/browser/brave_browser_main_loop.h"
|
|
|
|
#include "content/public/browser/browser_main_parts.h"
|
|
|
|
namespace brave {
|
|
|
|
void BraveBrowserMainLoop::PreShutdown() {
|
|
parts()->PreShutdown();
|
|
content::BrowserMainLoop::PreShutdown();
|
|
}
|
|
|
|
} // namespace brave
|