Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(101)

Side by Side Diff: third_party/WebKit/public/web/window_features.mojom

Issue 2353003004: Move ViewHostMsg_CreateWindow to mojom (Closed)
Patch Set: . Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 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
5 module blink.mojom;
6
7 struct WindowFeatures {
8 float x;
9 bool has_x = false;
10
11 float y;
12 bool has_y = false;
13
14 float width;
15 bool has_width = false;
16
17 float height;
18 bool has_height = false;
19
20 bool menu_bar_visible = true;
21 bool status_bar_visible = true;
22 bool tool_bar_visible = true;
23 bool location_bar_visible = true;
24 bool scrollbars_visible = true;
25 bool resizable = true;
26
27 bool fullscreen = false;
28 bool dialog = false;
29
30 array<string> additional_features;
31 };
OLDNEW
« no previous file with comments | « third_party/WebKit/public/web/WindowFeaturesStructTraits.h ('k') | third_party/WebKit/public/web/window_features.typemap » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698