| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 71 IPC_ENUM_TRAITS_MAX_VALUE(search_provider::OSDDType, | 71 IPC_ENUM_TRAITS_MAX_VALUE(search_provider::OSDDType, | 
| 72                           search_provider::OSDD_TYPE_LAST) | 72                           search_provider::OSDD_TYPE_LAST) | 
| 73 IPC_ENUM_TRAITS_MIN_MAX_VALUE(search_provider::InstallState, | 73 IPC_ENUM_TRAITS_MIN_MAX_VALUE(search_provider::InstallState, | 
| 74                               search_provider::DENIED, | 74                               search_provider::DENIED, | 
| 75                               search_provider::INSTALLED_STATE_LAST) | 75                               search_provider::INSTALLED_STATE_LAST) | 
| 76 IPC_ENUM_TRAITS_MAX_VALUE(ThemeBackgroundImageAlignment, | 76 IPC_ENUM_TRAITS_MAX_VALUE(ThemeBackgroundImageAlignment, | 
| 77                           THEME_BKGRND_IMAGE_ALIGN_LAST) | 77                           THEME_BKGRND_IMAGE_ALIGN_LAST) | 
| 78 IPC_ENUM_TRAITS_MAX_VALUE(ThemeBackgroundImageTiling, THEME_BKGRND_IMAGE_LAST) | 78 IPC_ENUM_TRAITS_MAX_VALUE(ThemeBackgroundImageTiling, THEME_BKGRND_IMAGE_LAST) | 
| 79 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebConsoleMessage::Level, | 79 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebConsoleMessage::Level, | 
| 80                           blink::WebConsoleMessage::LevelLast) | 80                           blink::WebConsoleMessage::LevelLast) | 
|  | 81 IPC_ENUM_TRAITS_MAX_VALUE(blink::WebConsoleMessage::Source, | 
|  | 82                           blink::WebConsoleMessage::SourceLast) | 
| 81 IPC_ENUM_TRAITS_MAX_VALUE(content::TopControlsState, | 83 IPC_ENUM_TRAITS_MAX_VALUE(content::TopControlsState, | 
| 82                           content::TOP_CONTROLS_STATE_LAST) | 84                           content::TOP_CONTROLS_STATE_LAST) | 
| 83 | 85 | 
| 84 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. | 86 // Output parameters for ChromeViewHostMsg_GetPluginInfo message. | 
| 85 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) | 87 IPC_STRUCT_BEGIN(ChromeViewHostMsg_GetPluginInfo_Output) | 
| 86   IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) | 88   IPC_STRUCT_MEMBER(ChromeViewHostMsg_GetPluginInfo_Status, status) | 
| 87   IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin) | 89   IPC_STRUCT_MEMBER(content::WebPluginInfo, plugin) | 
| 88   IPC_STRUCT_MEMBER(std::string, actual_mime_type) | 90   IPC_STRUCT_MEMBER(std::string, actual_mime_type) | 
| 89   IPC_STRUCT_MEMBER(std::string, group_identifier) | 91   IPC_STRUCT_MEMBER(std::string, group_identifier) | 
| 90   IPC_STRUCT_MEMBER(base::string16, group_name) | 92   IPC_STRUCT_MEMBER(base::string16, group_name) | 
| (...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 574 | 576 | 
| 575 // Record a sample string to a Rappor metric. | 577 // Record a sample string to a Rappor metric. | 
| 576 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 578 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRappor, | 
| 577                      std::string /* metric */, | 579                      std::string /* metric */, | 
| 578                      std::string /* sample */) | 580                      std::string /* sample */) | 
| 579 | 581 | 
| 580 // Record a domain and registry of a url to a Rappor metric. | 582 // Record a domain and registry of a url to a Rappor metric. | 
| 581 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 583 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_RecordRapporURL, | 
| 582                      std::string /* metric */, | 584                      std::string /* metric */, | 
| 583                      GURL /* sample url */) | 585                      GURL /* sample url */) | 
| OLD | NEW | 
|---|