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_MESSAGES_ENUMS_H_ | 5 #ifndef CONTENT_COMMON_FRAME_MESSAGES_ENUMS_H_ |
6 #define CONTENT_COMMON_FRAME_MESSAGES_ENUMS_H_ | 6 #define CONTENT_COMMON_FRAME_MESSAGES_ENUMS_H_ |
7 | 7 |
8 #include "ipc/ipc_message_macros.h" | 8 #include "content/common/accessibility_mode_enums.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. | 13 // Reload the page. |
14 RELOAD, | 14 RELOAD, |
15 | 15 |
16 // Reload the page, ignoring any cache entries. | 16 // Reload the page, ignoring any cache entries. |
17 RELOAD_IGNORING_CACHE, | 17 RELOAD_IGNORING_CACHE, |
18 | 18 |
(...skipping 12 matching lines...) Expand all Loading... |
31 | 31 |
32 // Navigation type not categorized by the other types. | 32 // Navigation type not categorized by the other types. |
33 NORMAL, | 33 NORMAL, |
34 | 34 |
35 // Last guard value, so we can use it for validity checks. | 35 // Last guard value, so we can use it for validity checks. |
36 NAVIGATE_TYPE_LAST = NORMAL, | 36 NAVIGATE_TYPE_LAST = NORMAL, |
37 }; | 37 }; |
38 }; | 38 }; |
39 | 39 |
40 #endif // CONTENT_COMMON_FRAME_MESSAGES_ENUMS_H_ | 40 #endif // CONTENT_COMMON_FRAME_MESSAGES_ENUMS_H_ |
OLD | NEW |