mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Delete Alloy bootstrap (fixes #3685)
This commit is contained in:
@@ -232,19 +232,14 @@ int main(int argc, char* argv[]) {
|
||||
}
|
||||
|
||||
// Log the current configuration.
|
||||
LOG(WARNING) << "Using "
|
||||
#if !defined(DISABLE_ALLOY_BOOTSTRAP)
|
||||
<< (IsChromeBootstrap() ? "Chrome" : "Alloy") << " bootstrap; "
|
||||
#endif
|
||||
<< (UseAlloyStyleBrowserGlobal() ? "Alloy" : "Chrome")
|
||||
<< " style browser; "
|
||||
<< (UseViewsGlobal()
|
||||
? (std::string(UseAlloyStyleWindowGlobal() ? "Alloy"
|
||||
: "Chrome") +
|
||||
" style window; ")
|
||||
: "")
|
||||
<< (UseViewsGlobal() ? "Views" : "Native")
|
||||
<< "-hosted (not a warning)";
|
||||
LOG(WARNING)
|
||||
<< "Using " << (UseAlloyStyleBrowserGlobal() ? "Alloy" : "Chrome")
|
||||
<< " style browser; "
|
||||
<< (UseViewsGlobal()
|
||||
? (std::string(UseAlloyStyleWindowGlobal() ? "Alloy" : "Chrome") +
|
||||
" style window; ")
|
||||
: "")
|
||||
<< (UseViewsGlobal() ? "Views" : "Native") << "-hosted (not a warning)";
|
||||
|
||||
std::unique_ptr<client::MainMessageLoop> message_loop;
|
||||
|
||||
|
Reference in New Issue
Block a user