| Index: content/public/common/javascript_message_type.h
|
| diff --git a/content/public/common/javascript_message_type.h b/content/public/common/javascript_message_type.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..9174a670b08f43b7d4b8ea955fce9aab57be3115
|
| --- /dev/null
|
| +++ b/content/public/common/javascript_message_type.h
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_PUBLIC_COMMON_JAVASCRIPT_MESSAGE_TYPE_H_
|
| +#define CONTENT_PUBLIC_COMMON_JAVASCRIPT_MESSAGE_TYPE_H_
|
| +#pragma once
|
| +
|
| +namespace content {
|
| +
|
| +enum JavaScriptMessageType {
|
| + JAVASCRIPT_MESSAGE_TYPE_ALERT,
|
| + JAVASCRIPT_MESSAGE_TYPE_CONFIRM,
|
| + JAVASCRIPT_MESSAGE_TYPE_PROMPT
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_PUBLIC_COMMON_JAVASCRIPT_MESSAGE_TYPE_H_
|
|
|