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

Side by Side Diff: extensions/common/guest_view/guest_view_constants.cc

Issue 910073003: <webview>: Make contentWindow available prior to attachment (on display:none). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed nit Created 5 years, 9 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
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/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";
18 18
19 // Events. 19 // Events.
20 const char kEventResize[] = "guestViewInternal.onResize"; 20 const char kEventResize[] = "guestViewInternal.onResize";
21 21
22 // Parameters/properties on events. 22 // Parameters/properties on events.
23 const char kContentWindowID[] = "contentWindowId";
24 const char kID[] = "id";
23 const char kIsTopLevel[] = "isTopLevel"; 25 const char kIsTopLevel[] = "isTopLevel";
24 const char kNewWidth[] = "newWidth"; 26 const char kNewWidth[] = "newWidth";
25 const char kNewHeight[] = "newHeight"; 27 const char kNewHeight[] = "newHeight";
26 const char kOldWidth[] = "oldWidth"; 28 const char kOldWidth[] = "oldWidth";
27 const char kOldHeight[] = "oldHeight"; 29 const char kOldHeight[] = "oldHeight";
28 const char kReason[] = "reason"; 30 const char kReason[] = "reason";
29 const char kUrl[] = "url"; 31 const char kUrl[] = "url";
30 const char kUserGesture[] = "userGesture"; 32 const char kUserGesture[] = "userGesture";
31 33
32 // Initialization parameters. 34 // Initialization parameters.
33 const char kParameterApi[] = "api"; 35 const char kParameterApi[] = "api";
34 const char kParameterInstanceId[] = "instanceId"; 36 const char kParameterInstanceId[] = "instanceId";
35 37
36 // Other. 38 // Other.
37 const char kGuestViewManagerKeyName[] = "guest_view_manager"; 39 const char kGuestViewManagerKeyName[] = "guest_view_manager";
38 const int kInstanceIDNone = 0; 40 const int kInstanceIDNone = 0;
39 const int kDefaultWidth = 300; 41 const int kDefaultWidth = 300;
40 const int kDefaultHeight = 300; 42 const int kDefaultHeight = 300;
41 43
42 } // namespace guestview 44 } // namespace guestview
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698