preloaded_isolated_origins.h 630 B

1234567891011121314151617181920
  1. // Copyright 2020 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef COMPONENTS_SITE_ISOLATION_PRELOADED_ISOLATED_ORIGINS_H_
  5. #define COMPONENTS_SITE_ISOLATION_PRELOADED_ISOLATED_ORIGINS_H_
  6. #include <vector>
  7. #include "url/origin.h"
  8. namespace site_isolation {
  9. // Retrieves a browser-specific list of isolated origins that should be loaded
  10. // at startup.
  11. std::vector<url::Origin> GetBrowserSpecificBuiltInIsolatedOrigins();
  12. } // namespace site_isolation
  13. #endif // COMPONENTS_SITE_ISOLATION_PRELOADED_ISOLATED_ORIGINS_H_