![trop[bot]](/assets/img/avatar_default.png)
* feat: redesign preload APIs Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * docs: remove service-worker mentions for now Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * fix lint Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * remove service-worker ipc code Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * add filename Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * fix: web preferences preload not included Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * fix: missing common init Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> * fix: preload bundle script error Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Samuel Maddock <samuel.maddock@gmail.com>
33 lines
921 B
C++
33 lines
921 B
C++
// Copyright (c) 2017 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "shell/browser/session_preferences.h"
|
|
|
|
#include "base/logging.h"
|
|
#include "base/memory/ptr_util.h"
|
|
#include "content/public/browser/browser_context.h"
|
|
|
|
namespace electron {
|
|
|
|
// static
|
|
int SessionPreferences::kLocatorKey = 0;
|
|
|
|
// static
|
|
void SessionPreferences::CreateForBrowserContext(
|
|
content::BrowserContext* context) {
|
|
DCHECK(context);
|
|
context->SetUserData(&kLocatorKey,
|
|
base::WrapUnique(new SessionPreferences{}));
|
|
}
|
|
|
|
SessionPreferences::SessionPreferences() = default;
|
|
SessionPreferences::~SessionPreferences() = default;
|
|
|
|
// static
|
|
SessionPreferences* SessionPreferences::FromBrowserContext(
|
|
content::BrowserContext* context) {
|
|
return static_cast<SessionPreferences*>(context->GetUserData(&kLocatorKey));
|
|
}
|
|
|
|
} // namespace electron
|