// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/public/renderer/window_features_converter.h" // This converter only converts WebWindowFeatures members // which should be used across process boundaries. // All the members of WebWindowFeatures are listed in web_window_features.h, // and classified to two groups, one is transferred by this converter // and one is not. namespace content { blink::mojom::WindowFeaturesPtr ConvertWebWindowFeaturesToMojoWindowFeatures( const blink::WebWindowFeatures& web_window_features) { … } blink::WebWindowFeatures ConvertMojoWindowFeaturesToWebWindowFeatures( const blink::mojom::WindowFeatures& window_features) { … } } // namespace content