| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CONTENT_COMMON_FRAME_MESSAGE_ENUMS_H_ | 5 #ifndef CONTENT_COMMON_FRAME_MESSAGE_ENUMS_H_ |
| 6 #define CONTENT_COMMON_FRAME_MESSAGE_ENUMS_H_ | 6 #define CONTENT_COMMON_FRAME_MESSAGE_ENUMS_H_ |
| 7 | 7 |
| 8 #include "content/common/accessibility_mode_enums.h" | 8 #include "content/common/accessibility_mode.h" |
| 9 | 9 |
| 10 struct FrameMsg_Navigate_Type { | 10 struct FrameMsg_Navigate_Type { |
| 11 public: | 11 public: |
| 12 enum Value { | 12 enum Value { |
| 13 // Reload the page, validating only cache entry for the main resource. | 13 // Reload the page, validating only cache entry for the main resource. |
| 14 RELOAD, | 14 RELOAD, |
| 15 | 15 |
| 16 // Reload the page, bypassing any cache entries. | 16 // Reload the page, bypassing any cache entries. |
| 17 RELOAD_BYPASSING_CACHE, | 17 RELOAD_BYPASSING_CACHE, |
| 18 | 18 |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 REPORT_LINK, | 71 REPORT_LINK, |
| 72 | 72 |
| 73 // Report metrics for this load, that originated from an Android OS intent. | 73 // Report metrics for this load, that originated from an Android OS intent. |
| 74 REPORT_INTENT, | 74 REPORT_INTENT, |
| 75 | 75 |
| 76 REPORT_TYPE_LAST = REPORT_INTENT, | 76 REPORT_TYPE_LAST = REPORT_INTENT, |
| 77 }; | 77 }; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 #endif // CONTENT_COMMON_FRAME_MESSAGE_ENUMS_H_ | 80 #endif // CONTENT_COMMON_FRAME_MESSAGE_ENUMS_H_ |
| OLD | NEW |