OLD | NEW |
| (Empty) |
1 // Copyright (c) 2006-2008 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 // Constants for the NPAPI test | |
6 | |
7 #ifndef WEBKIT_PORT_PLUGINS_TEST_NPAPI_CONSTANTS_H__ | |
8 #define WEBKIT_PORT_PLUGINS_TEST_NPAPI_CONSTANTS_H__ | |
9 | |
10 namespace NPAPIClient { | |
11 // The name of the cookie which will be used to communicate between | |
12 // the plugin and the test harness. | |
13 extern const char kTestCompleteCookie[]; | |
14 | |
15 // The cookie value which will be sent to the client upon successful | |
16 // test. | |
17 extern const char kTestCompleteSuccess[]; | |
18 } | |
19 #endif // WEBKIT_PORT_PLUGINS_TEST_NPAPI_CONSTANTS_H__ | |
OLD | NEW |