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

Side by Side Diff: content/common/browser_plugin/browser_plugin_constants.cc

Issue 24649002: Clean up a few more unused globals. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: thestig comment Created 7 years, 2 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/common/browser_plugin/browser_plugin_constants.h" 5 #include "content/common/browser_plugin/browser_plugin_constants.h"
6 6
7 namespace content { 7 namespace content {
8 8
9 namespace browser_plugin { 9 namespace browser_plugin {
10 10
(...skipping 24 matching lines...) Expand all
35 const char kAttributeAutoSize[] = "autosize"; 35 const char kAttributeAutoSize[] = "autosize";
36 const char kAttributeContentWindow[] = "contentWindow"; 36 const char kAttributeContentWindow[] = "contentWindow";
37 const char kAttributeMaxHeight[] = "maxheight"; 37 const char kAttributeMaxHeight[] = "maxheight";
38 const char kAttributeMaxWidth[] = "maxwidth"; 38 const char kAttributeMaxWidth[] = "maxwidth";
39 const char kAttributeMinHeight[] = "minheight"; 39 const char kAttributeMinHeight[] = "minheight";
40 const char kAttributeMinWidth[] = "minwidth"; 40 const char kAttributeMinWidth[] = "minwidth";
41 const char kAttributeName[] = "name"; 41 const char kAttributeName[] = "name";
42 const char kAttributePartition[] = "partition"; 42 const char kAttributePartition[] = "partition";
43 const char kAttributeSrc[] = "src"; 43 const char kAttributeSrc[] = "src";
44 44
45 // Events.
46 const char kEventSizeChanged[] = "sizechanged";
47
48 // Parameters/properties on events. 45 // Parameters/properties on events.
49 const char kDefaultPromptText[] = "defaultPromptText"; 46 const char kDefaultPromptText[] = "defaultPromptText";
50 const char kId[] = "id"; 47 const char kId[] = "id";
51 const char kInitialHeight[] = "initialHeight"; 48 const char kInitialHeight[] = "initialHeight";
52 const char kInitialWidth[] = "initialWidth"; 49 const char kInitialWidth[] = "initialWidth";
53 const char kLastUnlockedBySelf[] = "lastUnlockedBySelf"; 50 const char kLastUnlockedBySelf[] = "lastUnlockedBySelf";
54 const char kMessageText[] = "messageText"; 51 const char kMessageText[] = "messageText";
55 const char kMessageType[] = "messageType"; 52 const char kMessageType[] = "messageType";
56 const char kName[] = "name"; 53 const char kName[] = "name";
57 const char kPermission[] = "permission"; 54 const char kPermission[] = "permission";
(...skipping 22 matching lines...) Expand all
80 "Cannot remove partition attribute after navigating."; 77 "Cannot remove partition attribute after navigating.";
81 78
82 // Other. 79 // Other.
83 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager"; 80 const char kBrowserPluginGuestManagerKeyName[] = "browser_plugin_guest_manager";
84 const int kInstanceIDNone = 0; 81 const int kInstanceIDNone = 0;
85 const int kInvalidPermissionRequestID = 0; 82 const int kInvalidPermissionRequestID = 0;
86 83
87 } // namespace browser_plugin 84 } // namespace browser_plugin
88 85
89 } // namespace content 86 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698