OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 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 | 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 // Contains constants for known URLs and portions thereof. | 5 // Contains constants for known URLs and portions thereof. |
6 | 6 |
7 #ifndef CONTENT_COMMON_TEST_URL_CONSTANTS_H_ | 7 #ifndef CONTENT_COMMON_TEST_URL_CONSTANTS_H_ |
8 #define CONTENT_COMMON_TEST_URL_CONSTANTS_H_ | 8 #define CONTENT_COMMON_TEST_URL_CONSTANTS_H_ |
9 #pragma once | |
10 | 9 |
11 #include "content/public/common/url_constants.h" | 10 #include "content/public/common/url_constants.h" |
12 | 11 |
13 namespace chrome { | 12 namespace chrome { |
14 | 13 |
15 // Various special URLs used for testing. They have the same values as the URLs | 14 // Various special URLs used for testing. They have the same values as the URLs |
16 // in chrome/common/url_constants.h, but are duplicated here so that the reverse | 15 // in chrome/common/url_constants.h, but are duplicated here so that the reverse |
17 // dependency can be broken. | 16 // dependency can be broken. |
18 | 17 |
19 // Various URLs used in security policy testing. | 18 // Various URLs used in security policy testing. |
(...skipping 10 matching lines...) Expand all Loading... |
30 | 29 |
31 // The Bookmarks page is assumed in several tests to have the property that it | 30 // The Bookmarks page is assumed in several tests to have the property that it |
32 // is an extension. That's the case only with the ChromeBrowserContentClient | 31 // is an extension. That's the case only with the ChromeBrowserContentClient |
33 // implementation of WebUIFactory. With a different implementation that might | 32 // implementation of WebUIFactory. With a different implementation that might |
34 // not be the case. | 33 // not be the case. |
35 extern const char kTestBookmarksURL[]; | 34 extern const char kTestBookmarksURL[]; |
36 | 35 |
37 } // namespace chrome | 36 } // namespace chrome |
38 | 37 |
39 #endif // CONTENT_COMMON_TEST_URL_CONSTANTS_H_ | 38 #endif // CONTENT_COMMON_TEST_URL_CONSTANTS_H_ |
OLD | NEW |