![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>
42 lines
1,017 B
C++
42 lines
1,017 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.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_SESSION_PREFERENCES_H_
|
|
#define ELECTRON_SHELL_BROWSER_SESSION_PREFERENCES_H_
|
|
|
|
#include <vector>
|
|
|
|
#include "base/files/file_path.h"
|
|
#include "base/supports_user_data.h"
|
|
#include "shell/browser/preload_script.h"
|
|
|
|
namespace content {
|
|
class BrowserContext;
|
|
}
|
|
|
|
namespace electron {
|
|
|
|
class SessionPreferences : public base::SupportsUserData::Data {
|
|
public:
|
|
static SessionPreferences* FromBrowserContext(
|
|
content::BrowserContext* context);
|
|
|
|
static void CreateForBrowserContext(content::BrowserContext* context);
|
|
|
|
~SessionPreferences() override;
|
|
|
|
std::vector<PreloadScript>& preload_scripts() { return preload_scripts_; }
|
|
|
|
private:
|
|
SessionPreferences();
|
|
|
|
// The user data key.
|
|
static int kLocatorKey;
|
|
|
|
std::vector<PreloadScript> preload_scripts_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_SESSION_PREFERENCES_H_
|