| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 #include <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 kBlockedNoLoading, | 48 kBlockedNoLoading, |
| 49 kComponentUpdateRequired, | 49 kComponentUpdateRequired, |
| 50 kDisabled, | 50 kDisabled, |
| 51 // Flash is blocked, but user can click on the placeholder to trigger the | 51 // Flash is blocked, but user can click on the placeholder to trigger the |
| 52 // Flash permission prompt. | 52 // Flash permission prompt. |
| 53 kFlashHiddenPreferHtml, | 53 kFlashHiddenPreferHtml, |
| 54 kNotFound, | 54 kNotFound, |
| 55 kOutdatedBlocked, | 55 kOutdatedBlocked, |
| 56 kOutdatedDisallowed, | 56 kOutdatedDisallowed, |
| 57 kPlayImportantContent, | 57 kPlayImportantContent, |
| 58 #if defined(OS_LINUX) |
| 58 kRestartRequired, | 59 kRestartRequired, |
| 60 #endif |
| 59 kUnauthorized, | 61 kUnauthorized, |
| 60 }; | 62 }; |
| 61 | 63 |
| 62 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ | 64 #endif // CHROME_COMMON_RENDER_MESSAGES_H_ |
| 63 | 65 |
| 64 #define IPC_MESSAGE_START ChromeMsgStart | 66 #define IPC_MESSAGE_START ChromeMsgStart |
| 65 | 67 |
| 66 IPC_ENUM_TRAITS_MAX_VALUE(ChromeViewHostMsg_GetPluginInfo_Status, | 68 IPC_ENUM_TRAITS_MAX_VALUE(ChromeViewHostMsg_GetPluginInfo_Status, |
| 67 ChromeViewHostMsg_GetPluginInfo_Status::kUnauthorized) | 69 ChromeViewHostMsg_GetPluginInfo_Status::kUnauthorized) |
| 68 IPC_ENUM_TRAITS_MAX_VALUE(ThemeBackgroundImageAlignment, | 70 IPC_ENUM_TRAITS_MAX_VALUE(ThemeBackgroundImageAlignment, |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 // process so that they can be assigned to an Instant renderer. | 334 // process so that they can be assigned to an Instant renderer. |
| 333 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 335 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 334 std::vector<GURL> /* search_urls */, | 336 std::vector<GURL> /* search_urls */, |
| 335 GURL /* new_tab_page_url */) | 337 GURL /* new_tab_page_url */) |
| 336 | 338 |
| 337 #if BUILDFLAG(ENABLE_PLUGINS) | 339 #if BUILDFLAG(ENABLE_PLUGINS) |
| 338 // Sent by the renderer to check if crash reporting is enabled. | 340 // Sent by the renderer to check if crash reporting is enabled. |
| 339 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 341 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 340 bool /* enabled */) | 342 bool /* enabled */) |
| 341 #endif | 343 #endif |
| OLD | NEW |