ui: Stop converting Rect to RectF implicitly in native_theme_win.cc
[chromium-blink-merge.git] / chrome / common / secure_origin_whitelist.h
blob5b29a03e34561dfe54e0d932b0c968f782cb597f
1 // Copyright 2015 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.
5 #ifndef CHROME_COMMON_SECURE_ORIGIN_WHITELIST_H_
6 #define CHROME_COMMON_SECURE_ORIGIN_WHITELIST_H_
8 #include <set>
10 #include "url/gurl.h"
12 // Returns whitelisted origins that need to be considered trustworthy.
13 // The whitelist is given by kUnsafelyTreatInsecureOriginAsSecure
14 // command-line option.
15 // See https://www.w3.org/TR/powerful-features/#is-origin-trustworthy.
16 void GetSecureOriginWhitelist(std::set<GURL>* origins);
18 #endif // CHROME_COMMON_SECURE_ORIGIN_WHITELIST_H_