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
3// found in the LICENSE file.
4
5#include "extensions/browser/guest_view/extension_options/extension_options_constants.h"
6
7namespace extensionoptions {
8
9// API namespace.
10extern const char kAPINamespace[] = "extensionOptionsInternal";
11
12// Attributes.
13const char kAttributeAutoSize[] = "autosize";
14const char kAttributeMaxHeight[] = "maxheight";
15const char kAttributeMaxWidth[] = "maxwidth";
16const char kAttributeMinHeight[] = "minheight";
17const char kAttributeMinWidth[] = "minwidth";
18
19const char kExtensionId[] = "extensionId";
20
21const char kNewHeight[] = "newHeight";
22const char kNewWidth[] = "newWidth";
23const char kOldHeight[] = "oldHeight";
24const char kOldWidth[] = "oldWidth";
25
26}  // namespace extensionoptions
27