| OLD | NEW |
| (Empty) |
| 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. | |
| 4 | |
| 5 // Constants related to the prerendering feature in chrome. | |
| 6 | |
| 7 #ifndef CHROME_COMMON_PRERENDER_CONSTANTS_H_ | |
| 8 #define CHROME_COMMON_PRERENDER_CONSTANTS_H_ | |
| 9 #pragma once | |
| 10 | |
| 11 namespace prerender { | |
| 12 | |
| 13 enum PrerenderCancellationReason { | |
| 14 PRERENDER_CANCELLATION_REASON_FIRST_UNUSED, | |
| 15 PRERENDER_CANCELLATION_REASON_HTML5_MEDIA, | |
| 16 PRERENDER_CANCELLATION_REASON_LAST_UNUSED, | |
| 17 }; | |
| 18 | |
| 19 } // namespace prerender | |
| 20 | |
| 21 #endif // CHROME_COMMON_PRERENDER_CONSTANTS_H_ | |
| OLD | NEW |