1 // Copyright (c) 2011 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.
5 #ifndef WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H_
6 #define WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H_
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebNavigationPolicy.h"
9 #include "webkit/glue/webkit_glue_export.h"
11 enum WindowOpenDisposition
{
15 // Indicates that only one tab with the url should exist in the same window.
26 // Conversion function:
27 WEBKIT_GLUE_EXPORT WindowOpenDisposition
NavigationPolicyToDisposition(
28 WebKit::WebNavigationPolicy policy
);
30 #endif // WEBKIT_GLUE_WINDOW_OPEN_DISPOSITION_H_