1116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Copyright 2014 The Chromium Authors. All rights reserved.
2116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// Use of this source code is governed by a BSD-style license that can be
3116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch// found in the LICENSE file.
4116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
503b57e008b61dfcb1fbad3aea950ae0e001748b0Torne (Richard Coles)#include "extensions/browser/guest_view/app_view/app_view_constants.h"
6116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
7116680a4aac90f2aa7413d9095a592090648e557Ben Murdochnamespace appview {
8116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
96e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// API namespace for the embedder.
106e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kEmbedderAPINamespace[] = "appViewEmbedderInternal";
116e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
126e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Create parameters.
13116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kAppID[] = "appId";
146e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)const char kData[] = "data";
156e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)
166e8cce623b6e4fe0c9e4af605d675dd9d0338c38Torne (Richard Coles)// Parameters/properties on events.
17116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kEmbedderID[] ="embedderId";
18116680a4aac90f2aa7413d9095a592090648e557Ben Murdochconst char kGuestInstanceID[] = "guestInstanceId";
19116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch
20116680a4aac90f2aa7413d9095a592090648e557Ben Murdoch}  // namespace appview
21