| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // Constants for the NPAPI test | 5 // Constants for the NPAPI test |
| 6 | 6 |
| 7 #ifndef WEBKIT_PLUGINS_NPAPI_TEST_NPAPI_CONSTANTS_H_ | 7 #ifndef CONTENT_TEST_PLUGIN_NPAPI_CONSTANTS_H_ |
| 8 #define WEBKIT_PLUGINS_NPAPI_TEST_NPAPI_CONSTANTS_H_ | 8 #define CONTENT_TEST_PLUGIN_NPAPI_CONSTANTS_H_ |
| 9 | 9 |
| 10 namespace NPAPIClient { | 10 namespace NPAPIClient { |
| 11 | 11 |
| 12 // The name of the cookie which will be used to communicate between | 12 // The name of the cookie which will be used to communicate between |
| 13 // the plugin and the test harness. | 13 // the plugin and the test harness. |
| 14 extern const char kTestCompleteCookie[]; | 14 extern const char kTestCompleteCookie[]; |
| 15 | 15 |
| 16 // The cookie value which will be sent to the client upon successful | 16 // The cookie value which will be sent to the client upon successful |
| 17 // test. | 17 // test. |
| 18 extern const char kTestCompleteSuccess[]; | 18 extern const char kTestCompleteSuccess[]; |
| 19 | 19 |
| 20 } // namespace NPAPIClient | 20 } // namespace NPAPIClient |
| 21 | 21 |
| 22 #endif // WEBKIT_PLUGINS_NPAPI_TEST_NPAPI_CONSTANTS_H_ | 22 #endif // CONTENT_TEST_PLUGIN_NPAPI_CONSTANTS_H_ |
| OLD | NEW |