OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "extensions/common/guest_view/guest_view_constants.h" | 5 #include "extensions/common/guest_view/guest_view_constants.h" |
6 | 6 |
7 namespace guestview { | 7 namespace guestview { |
8 | 8 |
9 // Sizing attributes/parameters. | 9 // Sizing Attributes. |
10 const char kAttributeAutoSize[] = "autosize"; | 10 const char kAttributeAutoSize[] = "autosize"; |
11 const char kAttributeMaxHeight[] = "maxheight"; | 11 const char kAttributeMaxHeight[] = "maxheight"; |
12 const char kAttributeMaxWidth[] = "maxwidth"; | 12 const char kAttributeMaxWidth[] = "maxwidth"; |
13 const char kAttributeMinHeight[] = "minheight"; | 13 const char kAttributeMinHeight[] = "minheight"; |
14 const char kAttributeMinWidth[] = "minwidth"; | 14 const char kAttributeMinWidth[] = "minwidth"; |
15 const char kElementWidth[] = "elementWidth"; | |
16 const char kElementHeight[] = "elementHeight"; | |
17 | 15 |
18 // Parameters/properties on events. | 16 // Parameters/properties on events. |
19 const char kIsTopLevel[] = "isTopLevel"; | 17 const char kIsTopLevel[] = "isTopLevel"; |
20 const char kReason[] = "reason"; | 18 const char kReason[] = "reason"; |
21 const char kUrl[] = "url"; | 19 const char kUrl[] = "url"; |
22 const char kUserGesture[] = "userGesture"; | 20 const char kUserGesture[] = "userGesture"; |
23 | 21 |
24 // Initialization parameters. | 22 // Initialization parameters. |
25 const char kParameterApi[] = "api"; | 23 const char kParameterApi[] = "api"; |
26 const char kParameterInstanceId[] = "instanceId"; | 24 const char kParameterInstanceId[] = "instanceId"; |
27 | 25 |
28 // Other. | 26 // Other. |
29 const char kGuestViewManagerKeyName[] = "guest_view_manager"; | 27 const char kGuestViewManagerKeyName[] = "guest_view_manager"; |
30 const int kInstanceIDNone = 0; | 28 const int kInstanceIDNone = 0; |
31 const int kDefaultWidth = 300; | |
32 const int kDefaultHeight = 300; | |
33 | 29 |
34 } // namespace guestview | 30 } // namespace guestview |
OLD | NEW |