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

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

Issue 1102173002: Move GuestView layer in browser to components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed John's comments Created 5 years, 7 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 "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
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
OLDNEW
« no previous file with comments | « components/guest_view/common/guest_view_constants.h ('k') | components/guest_view/common/guest_view_message_generator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698