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 "components/guest_view/common/guest_view_constants.h" |
6 | 6 |
7 namespace guestview { | 7 namespace guest_view { |
8 | 8 |
9 // Sizing attributes/parameters. | 9 // Sizing attributes/parameters. |
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"; | 15 const char kElementWidth[] = "elementWidth"; |
16 const char kElementHeight[] = "elementHeight"; | 16 const char kElementHeight[] = "elementHeight"; |
17 const char kElementSizeIsLogical[] = "elementSizeIsLogical"; | 17 const char kElementSizeIsLogical[] = "elementSizeIsLogical"; |
(...skipping 18 matching lines...) Expand all Loading... |
36 const char kParameterApi[] = "api"; | 36 const char kParameterApi[] = "api"; |
37 const char kParameterInstanceId[] = "instanceId"; | 37 const char kParameterInstanceId[] = "instanceId"; |
38 | 38 |
39 // Other. | 39 // Other. |
40 const char kGuestViewManagerKeyName[] = "guest_view_manager"; | 40 const char kGuestViewManagerKeyName[] = "guest_view_manager"; |
41 const int kInstanceIDNone = 0; | 41 const int kInstanceIDNone = 0; |
42 const int kDefaultWidth = 300; | 42 const int kDefaultWidth = 300; |
43 const int kDefaultHeight = 300; | 43 const int kDefaultHeight = 300; |
44 | 44 |
45 } // namespace guestview | 45 } // namespace guestview |
OLD | NEW |