Commit 9517a429 authored by Mark Brand's avatar Mark Brand Committed by Commit Bot

mojo: Changing typemaps to use fully-qualified type names for typemapped types.

Many existing typemaps don't use fully-qualified typenames, and rely on the undocumented namespacing of the generated code. This breaks the generated code for the generic mojo LPM fuzzer that's currently under development, which has different namespacing. This CL updates all typemaps files to use fully qualified typenames as per the documentation.

Change-Id: I8b8fe9e99369728a2a6e521c92e79f4a52fbce15
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1742227
Commit-Queue: Mark Brand <markbrand@google.com>
Reviewed-by: default avatarDaniel Cheng <dcheng@chromium.org>
Reviewed-by: default avatarKen Rockot <rockot@google.com>
Cr-Commit-Position: refs/heads/master@{#688473}
parent b35d45fc
...@@ -14,13 +14,12 @@ public_deps = [ ...@@ -14,13 +14,12 @@ public_deps = [
"//mojo/public/cpp/bindings:struct_traits", "//mojo/public/cpp/bindings:struct_traits",
] ]
traits_headers = traits_headers = [ "//chrome/chrome_cleaner/mojom/typemaps/pup_mojom_traits.h" ]
[ "//chrome/chrome_cleaner/mojom/typemaps/pup_mojom_traits.h" ]
sources = [ sources = [
"//chrome/chrome_cleaner/mojom/typemaps/pup_mojom_traits.cc", "//chrome/chrome_cleaner/mojom/typemaps/pup_mojom_traits.cc",
] ]
type_mappings = [ type_mappings = [
"chrome_cleaner.mojom.TraceLocation=chrome_cleaner::UwS::TraceLocation", "chrome_cleaner.mojom.TraceLocation=::chrome_cleaner::UwS::TraceLocation",
"chrome_cleaner.mojom.PUP=chrome_cleaner::PUPData::PUP", "chrome_cleaner.mojom.PUP=::chrome_cleaner::PUPData::PUP",
] ]
...@@ -9,4 +9,4 @@ sources = [ ...@@ -9,4 +9,4 @@ sources = [
"//chrome/chrome_cleaner/mojom/typemaps/string16_embedded_nulls_mojom_traits.cc", "//chrome/chrome_cleaner/mojom/typemaps/string16_embedded_nulls_mojom_traits.cc",
] ]
type_mappings = [ "chrome_cleaner.mojom.String16EmbeddedNulls=chrome_cleaner::String16EmbeddedNulls" ] type_mappings = [ "chrome_cleaner.mojom.String16EmbeddedNulls=::chrome_cleaner::String16EmbeddedNulls" ]
...@@ -4,14 +4,13 @@ ...@@ -4,14 +4,13 @@
mojom = "//chrome/chrome_cleaner/mojom/windows_handle.mojom" mojom = "//chrome/chrome_cleaner/mojom/windows_handle.mojom"
public_headers = [] public_headers = []
traits_headers = [ traits_headers =
"//chrome/chrome_cleaner/mojom/typemaps/windows_handle_mojom_traits.h", [ "//chrome/chrome_cleaner/mojom/typemaps/windows_handle_mojom_traits.h" ]
]
sources = [ sources = [
"//chrome/chrome_cleaner/mojom/typemaps/windows_handle_mojom_traits.cc", "//chrome/chrome_cleaner/mojom/typemaps/windows_handle_mojom_traits.cc",
] ]
type_mappings = [ type_mappings = [
"chrome_cleaner.mojom.PredefinedHandle=HANDLE[copyable_pass_by_value]", "chrome_cleaner.mojom.PredefinedHandle=::HANDLE[copyable_pass_by_value]",
"chrome_cleaner.mojom.WindowsHandle=HANDLE[copyable_pass_by_value]", "chrome_cleaner.mojom.WindowsHandle=::HANDLE[copyable_pass_by_value]",
] ]
...@@ -10,4 +10,4 @@ public_deps = [ ...@@ -10,4 +10,4 @@ public_deps = [
] ]
type_mappings = type_mappings =
[ "chrome.mojom.BrowserControlsState=content::BrowserControlsState" ] [ "chrome.mojom.BrowserControlsState=::content::BrowserControlsState" ]
...@@ -9,8 +9,8 @@ public_headers = [ "//chrome/common/mac/app_shim_launch.h" ] ...@@ -9,8 +9,8 @@ public_headers = [ "//chrome/common/mac/app_shim_launch.h" ]
traits_headers = [ "//chrome/common/mac/app_shim_param_traits.h" ] traits_headers = [ "//chrome/common/mac/app_shim_param_traits.h" ]
type_mappings = [ type_mappings = [
"chrome.mojom.AppShimLaunchType=apps::AppShimLaunchType", "chrome.mojom.AppShimLaunchType=::apps::AppShimLaunchType",
"chrome.mojom.AppShimLaunchResult=apps::AppShimLaunchResult", "chrome.mojom.AppShimLaunchResult=::apps::AppShimLaunchResult",
"chrome.mojom.AppShimFocusType=apps::AppShimFocusType", "chrome.mojom.AppShimFocusType=::apps::AppShimFocusType",
"chrome.mojom.AppShimAttentionType=apps::AppShimAttentionType", "chrome.mojom.AppShimAttentionType=::apps::AppShimAttentionType",
] ]
...@@ -27,11 +27,11 @@ sources = [ ...@@ -27,11 +27,11 @@ sources = [
"//chrome/common/media_router/mojom/media_router_mojom_traits.cc", "//chrome/common/media_router/mojom/media_router_mojom_traits.cc",
] ]
type_mappings = [ type_mappings = [
"media_router.mojom.Issue=media_router::IssueInfo", "media_router.mojom.Issue=::media_router::IssueInfo",
"media_router.mojom.Issue.ActionType=media_router::IssueInfo::Action", "media_router.mojom.Issue.ActionType=::media_router::IssueInfo::Action",
"media_router.mojom.Issue.Severity=media_router::IssueInfo::Severity", "media_router.mojom.Issue.Severity=::media_router::IssueInfo::Severity",
"media_router.mojom.MediaRoute=media_router::MediaRoute", "media_router.mojom.MediaRoute=::media_router::MediaRoute",
"media_router.mojom.MediaRouteProvider.Id=media_router::MediaRouteProviderId", "media_router.mojom.MediaRouteProvider.Id=::media_router::MediaRouteProviderId",
"media_router.mojom.MediaSink=media_router::MediaSinkInternal", "media_router.mojom.MediaSink=::media_router::MediaSinkInternal",
"media_router.mojom.RouteRequestResultCode=media_router::RouteRequestResult::ResultCode", "media_router.mojom.RouteRequestResultCode=::media_router::RouteRequestResult::ResultCode",
] ]
...@@ -14,4 +14,4 @@ public_deps = [ ...@@ -14,4 +14,4 @@ public_deps = [
"//components/safe_browsing:csd_proto", "//components/safe_browsing:csd_proto",
] ]
type_mappings = [ "chrome.mojom.SafeArchiveAnalyzerResults=safe_browsing::ArchiveAnalyzerResults" ] type_mappings = [ "chrome.mojom.SafeArchiveAnalyzerResults=::safe_browsing::ArchiveAnalyzerResults" ]
...@@ -18,6 +18,6 @@ public_deps = [ ...@@ -18,6 +18,6 @@ public_deps = [
] ]
type_mappings = [ type_mappings = [
"printing.mojom.PdfRenderSettings=printing::PdfRenderSettings", "printing.mojom.PdfRenderSettings=::printing::PdfRenderSettings",
"printing.mojom.PdfRenderSettings::Mode=printing::PdfRenderSettings::Mode", "printing.mojom.PdfRenderSettings::Mode=::printing::PdfRenderSettings::Mode",
] ]
...@@ -12,6 +12,6 @@ sources = [ ...@@ -12,6 +12,6 @@ sources = [
public_deps = [] public_deps = []
type_mappings = [ type_mappings = [
"printing.mojom.PwgRasterTransformType=printing::PwgRasterTransformType", "printing.mojom.PwgRasterTransformType=::printing::PwgRasterTransformType",
"printing.mojom.PwgRasterSettings=printing::PwgRasterSettings", "printing.mojom.PwgRasterSettings=::printing::PwgRasterSettings",
] ]
...@@ -29,9 +29,9 @@ deps = [ ...@@ -29,9 +29,9 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"chrome.mojom.AntiVirusProduct=metrics::SystemProfileProto_AntiVirusProduct", "chrome.mojom.AntiVirusProduct=::metrics::SystemProfileProto_AntiVirusProduct",
"chrome.mojom.CertificateType=CertificateInfo::Type", "chrome.mojom.CertificateType=::CertificateInfo::Type",
"chrome.mojom.FileFilterSpec=ui::FileFilterSpec", "chrome.mojom.FileFilterSpec=::ui::FileFilterSpec",
"chrome.mojom.InspectionResult=ModuleInspectionResult[move_only]", "chrome.mojom.InspectionResult=::ModuleInspectionResult[move_only]",
"chrome.mojom.SelectFileDialogType=ui::SelectFileDialog::Type", "chrome.mojom.SelectFileDialogType=::ui::SelectFileDialog::Type",
] ]
...@@ -17,4 +17,4 @@ public_deps = [ ...@@ -17,4 +17,4 @@ public_deps = [
] ]
type_mappings = type_mappings =
[ "chromecast.mojom.AudioChannel=chromecast::media::AudioChannel" ] [ "chromecast.mojom.AudioChannel=::chromecast::media::AudioChannel" ]
...@@ -13,4 +13,4 @@ deps = [ ...@@ -13,4 +13,4 @@ deps = [
"//components/drive", "//components/drive",
] ]
type_mappings = [ "drivefs.mojom.FileError=drive::FileError" ] type_mappings = [ "drivefs.mojom.FileError=::drive::FileError" ]
...@@ -24,7 +24,7 @@ public_deps = [ ...@@ -24,7 +24,7 @@ public_deps = [
] ]
type_mappings = [ type_mappings = [
"chromeos.multidevice.mojom.BeaconSeed=chromeos::multidevice::BeaconSeed", "chromeos.multidevice.mojom.BeaconSeed=::chromeos::multidevice::BeaconSeed",
"chromeos.multidevice.mojom.RemoteDevice=chromeos::multidevice::RemoteDevice", "chromeos.multidevice.mojom.RemoteDevice=::chromeos::multidevice::RemoteDevice",
"chromeos.multidevice.mojom.SoftwareFeature=chromeos::multidevice::SoftwareFeature", "chromeos.multidevice.mojom.SoftwareFeature=::chromeos::multidevice::SoftwareFeature",
] ]
...@@ -12,7 +12,7 @@ public_deps = [ ...@@ -12,7 +12,7 @@ public_deps = [
traits_headers = [ "//chromeos/services/network_config/public/mojom/cros_network_config_mojom_traits.h" ] traits_headers = [ "//chromeos/services/network_config/public/mojom/cros_network_config_mojom_traits.h" ]
type_mappings = type_mappings =
[ "chromeos.cros_network_config.mojom.ProxyMode=ProxyPrefs::ProxyMode" ] [ "chromeos.cros_network_config.mojom.ProxyMode=::ProxyPrefs::ProxyMode" ]
sources = [ sources = [
"//chromeos/services/network_config/public/mojom/cros_network_config_mojom_traits.cc", "//chromeos/services/network_config/public/mojom/cros_network_config_mojom_traits.cc",
......
...@@ -19,4 +19,4 @@ public_deps = [ ...@@ -19,4 +19,4 @@ public_deps = [
"//chromeos/services/secure_channel/public/cpp/shared", "//chromeos/services/secure_channel/public/cpp/shared",
] ]
type_mappings = [ "chromeos.secure_channel.mojom.ConnectionPriority=chromeos::secure_channel::ConnectionPriority" ] type_mappings = [ "chromeos.secure_channel.mojom.ConnectionPriority=::chromeos::secure_channel::ConnectionPriority" ]
...@@ -9,6 +9,6 @@ public_deps = [ ...@@ -9,6 +9,6 @@ public_deps = [
"//components/account_id", "//components/account_id",
] ]
type_mappings = [ type_mappings = [
"signin.mojom.AccountType=AccountType", "signin.mojom.AccountType=::AccountType",
"signin.mojom.AccountId=AccountId", "signin.mojom.AccountId=::AccountId",
] ]
mojom = "//components/arc/mojom/app.mojom" mojom = "//components/arc/mojom/app.mojom"
public_headers = [ "//components/arc/app/arc_playstore_search_request_state.h" ] public_headers = [ "//components/arc/app/arc_playstore_search_request_state.h" ]
traits_headers = [ "//components/arc/mojom/app_mojom_traits.h" ] traits_headers = [ "//components/arc/mojom/app_mojom_traits.h" ]
type_mappings = type_mappings = [
[ "arc.mojom.AppDiscoveryRequestState=arc::ArcPlayStoreSearchRequestState" ] "arc.mojom.AppDiscoveryRequestState=::arc::ArcPlayStoreSearchRequestState",
]
...@@ -10,4 +10,4 @@ deps = [ ...@@ -10,4 +10,4 @@ deps = [
public_deps = [ public_deps = [
"//skia", "//skia",
] ]
type_mappings = [ "arc.mojom.ArcBitmap=SkBitmap" ] type_mappings = [ "arc.mojom.ArcBitmap=::SkBitmap" ]
...@@ -14,8 +14,8 @@ deps = [ ...@@ -14,8 +14,8 @@ deps = [
"//device/bluetooth/public/cpp", "//device/bluetooth/public/cpp",
] ]
type_mappings = [ type_mappings = [
"arc.mojom.BluetoothDeviceType=device::BluetoothTransport", "arc.mojom.BluetoothDeviceType=::device::BluetoothTransport",
"arc.mojom.BluetoothSdpAttributeType=bluez::BluetoothServiceAttributeValueBlueZ::Type", "arc.mojom.BluetoothSdpAttributeType=::bluez::BluetoothServiceAttributeValueBlueZ::Type",
"arc.mojom.BluetoothUUID=device::BluetoothUUID", "arc.mojom.BluetoothUUID=::device::BluetoothUUID",
"arc.mojom.BluetoothAdvertisement=std::unique_ptr<device::BluetoothAdvertisement::Data>[move_only]", "arc.mojom.BluetoothAdvertisement=::std::unique_ptr<::device::BluetoothAdvertisement::Data>[move_only]",
] ]
...@@ -11,4 +11,4 @@ traits_headers = [ "//components/arc/file_system/file_system_mojom_traits.h" ] ...@@ -11,4 +11,4 @@ traits_headers = [ "//components/arc/file_system/file_system_mojom_traits.h" ]
sources = [ sources = [
"//components/arc/file_system/file_system_mojom_traits.cc", "//components/arc/file_system/file_system_mojom_traits.cc",
] ]
type_mappings = [ "arc.mojom.ChangeType=storage::WatcherManager::ChangeType" ] type_mappings = [ "arc.mojom.ChangeType=::storage::WatcherManager::ChangeType" ]
mojom = "//components/arc/mojom/ime.mojom" mojom = "//components/arc/mojom/ime.mojom"
public_headers = [ "//ui/base/ime/text_input_type.h" ] public_headers = [ "//ui/base/ime/text_input_type.h" ]
traits_headers = [ "//components/arc/mojom/ime_mojom_traits.h" ] traits_headers = [ "//components/arc/mojom/ime_mojom_traits.h" ]
type_mappings = [ "arc.mojom.TextInputType=ui::TextInputType" ] type_mappings = [ "arc.mojom.TextInputType=::ui::TextInputType" ]
...@@ -13,7 +13,7 @@ public_deps = [ ...@@ -13,7 +13,7 @@ public_deps = [
"//printing:printing", "//printing:printing",
] ]
type_mappings = [ type_mappings = [
"arc.mojom.PrintPageRange=printing::PageRange", "arc.mojom.PrintPageRange=::printing::PageRange",
"arc.mojom.PrintResolution=gfx::Size", "arc.mojom.PrintResolution=::gfx::Size",
"arc.mojom.PrinterCapabilities=printing::PrinterSemanticCapsAndDefaults", "arc.mojom.PrinterCapabilities=::printing::PrinterSemanticCapsAndDefaults",
] ]
...@@ -7,4 +7,4 @@ traits_headers = [ "//components/arc/timer/arc_timer_mojom_traits.h" ] ...@@ -7,4 +7,4 @@ traits_headers = [ "//components/arc/timer/arc_timer_mojom_traits.h" ]
sources = [ sources = [
"//components/arc/timer/arc_timer_mojom_traits.cc", "//components/arc/timer/arc_timer_mojom_traits.cc",
] ]
type_mappings = [ "arc.mojom.ClockId=clockid_t" ] type_mappings = [ "arc.mojom.ClockId=::clockid_t" ]
...@@ -17,8 +17,8 @@ deps = [ ...@@ -17,8 +17,8 @@ deps = [
"//base", "//base",
] ]
type_mappings = [ type_mappings = [
"arc.mojom.VideoFrameStorageType=media::VideoEncodeAccelerator::Config::StorageType", "arc.mojom.VideoFrameStorageType=::media::VideoEncodeAccelerator::Config::StorageType",
"arc.mojom.VideoEncodeAccelerator.Error=media::VideoEncodeAccelerator::Error", "arc.mojom.VideoEncodeAccelerator.Error=::media::VideoEncodeAccelerator::Error",
"arc.mojom.VideoEncodeProfile=media::VideoEncodeAccelerator::SupportedProfile", "arc.mojom.VideoEncodeProfile=::media::VideoEncodeAccelerator::SupportedProfile",
"arc.mojom.VideoEncodeAcceleratorConfig=media::VideoEncodeAccelerator::Config", "arc.mojom.VideoEncodeAcceleratorConfig=::media::VideoEncodeAccelerator::Config",
] ]
...@@ -15,6 +15,6 @@ sources = [ ...@@ -15,6 +15,6 @@ sources = [
"//components/arc/volume_mounter/volume_mounter_mojom_traits.cc", "//components/arc/volume_mounter/volume_mounter_mojom_traits.cc",
] ]
type_mappings = [ type_mappings = [
"arc.mojom.DeviceType=chromeos::DeviceType", "arc.mojom.DeviceType=::chromeos::DeviceType",
"arc.mojom.MountEvent=chromeos::disks::DiskMountManager::MountEvent", "arc.mojom.MountEvent=::chromeos::disks::DiskMountManager::MountEvent",
] ]
...@@ -27,16 +27,16 @@ deps = [ ...@@ -27,16 +27,16 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"autofill.mojom.FormData=autofill::FormData", "autofill.mojom.FormData=::autofill::FormData",
"autofill.mojom.FormDataPredictions=autofill::FormDataPredictions", "autofill.mojom.FormDataPredictions=::autofill::FormDataPredictions",
"autofill.mojom.FormFieldData=autofill::FormFieldData", "autofill.mojom.FormFieldData=::autofill::FormFieldData",
"autofill.mojom.FormFieldDataPredictions=autofill::FormFieldDataPredictions", "autofill.mojom.FormFieldDataPredictions=::autofill::FormFieldDataPredictions",
"autofill.mojom.FormsPredictionsMap=autofill::FormsPredictionsMap", "autofill.mojom.FormsPredictionsMap=::autofill::FormsPredictionsMap",
"autofill.mojom.PasswordAndRealm=autofill::PasswordAndRealm", "autofill.mojom.PasswordAndRealm=::autofill::PasswordAndRealm",
"autofill.mojom.PasswordForm=autofill::PasswordForm", "autofill.mojom.PasswordForm=::autofill::PasswordForm",
"autofill.mojom.PasswordFormFieldPredictionMap=autofill::PasswordFormFieldPredictionMap", "autofill.mojom.PasswordFormFieldPredictionMap=::autofill::PasswordFormFieldPredictionMap",
"autofill.mojom.PasswordFormFillData=autofill::PasswordFormFillData", "autofill.mojom.PasswordFormFillData=::autofill::PasswordFormFillData",
"autofill.mojom.PasswordFormGenerationData=autofill::PasswordFormGenerationData", "autofill.mojom.PasswordFormGenerationData=::autofill::PasswordFormGenerationData",
"autofill.mojom.PasswordGenerationUIData=autofill::password_generation::PasswordGenerationUIData", "autofill.mojom.PasswordGenerationUIData=::autofill::password_generation::PasswordGenerationUIData",
"autofill.mojom.ValueElementPair=autofill::ValueElementPair", "autofill.mojom.ValueElementPair=::autofill::ValueElementPair",
] ]
...@@ -15,7 +15,7 @@ sources = [ ...@@ -15,7 +15,7 @@ sources = [
] ]
type_mappings = [ type_mappings = [
"chrome_cleaner.mojom.FilePath=base::FilePath", "chrome_cleaner.mojom.FilePath=::base::FilePath",
"chrome_cleaner.mojom.RegistryKey=base::string16", "chrome_cleaner.mojom.RegistryKey=::base::string16",
"chrome_cleaner.mojom.ExtensionId=base::string16", "chrome_cleaner.mojom.ExtensionId=::base::string16",
] ]
...@@ -20,4 +20,4 @@ deps = [ ...@@ -20,4 +20,4 @@ deps = [
"//media/base/ipc", "//media/base/ipc",
] ]
type_mappings = [ "chromeos_camera.mojom.EncodeStatus=chromeos_camera::JpegEncodeAccelerator::Status" ] type_mappings = [ "chromeos_camera.mojom.EncodeStatus=::chromeos_camera::JpegEncodeAccelerator::Status" ]
...@@ -24,6 +24,6 @@ deps = [ ...@@ -24,6 +24,6 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"chromeos_camera.mojom.BitstreamBuffer=media::BitstreamBuffer[move_only]", "chromeos_camera.mojom.BitstreamBuffer=::media::BitstreamBuffer[move_only]",
"chromeos_camera.mojom.DecodeError=chromeos_camera::MjpegDecodeAccelerator::Error", "chromeos_camera.mojom.DecodeError=::chromeos_camera::MjpegDecodeAccelerator::Error",
] ]
...@@ -17,4 +17,4 @@ deps = [ ...@@ -17,4 +17,4 @@ deps = [
"//ui/gfx/geometry/mojom:mojom_traits", "//ui/gfx/geometry/mojom:mojom_traits",
] ]
type_mappings = [ "content_capture.mojom.ContentCaptureData=content_capture::ContentCaptureData" ] type_mappings = [ "content_capture.mojom.ContentCaptureData=::content_capture::ContentCaptureData" ]
...@@ -15,8 +15,8 @@ deps = [ ...@@ -15,8 +15,8 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"blink.mojom.CredentialType=password_manager::CredentialType", "blink.mojom.CredentialType=::password_manager::CredentialType",
"blink.mojom.CredentialMediationRequirement=password_manager::CredentialMediationRequirement", "blink.mojom.CredentialMediationRequirement=::password_manager::CredentialMediationRequirement",
"blink.mojom.CredentialInfo=password_manager::CredentialInfo", "blink.mojom.CredentialInfo=::password_manager::CredentialInfo",
"blink.mojom.CredentialManagerError=password_manager::CredentialManagerError", "blink.mojom.CredentialManagerError=::password_manager::CredentialManagerError",
] ]
...@@ -8,4 +8,4 @@ traits_headers = [ "//components/sync/mojom/syncer_mojom_traits.h" ] ...@@ -8,4 +8,4 @@ traits_headers = [ "//components/sync/mojom/syncer_mojom_traits.h" ]
deps = [ deps = [
"//components/sync:sync", "//components/sync:sync",
] ]
type_mappings = [ "syncer.mojom.StringOrdinal=syncer::StringOrdinal" ] type_mappings = [ "syncer.mojom.StringOrdinal=::syncer::StringOrdinal" ]
...@@ -18,6 +18,6 @@ deps = [ ...@@ -18,6 +18,6 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"translate.mojom.LanguageDetectionDetails=translate::LanguageDetectionDetails", "translate.mojom.LanguageDetectionDetails=::translate::LanguageDetectionDetails",
"translate.mojom.TranslateError=translate::TranslateErrors::Type", "translate.mojom.TranslateError=::translate::TranslateErrors::Type",
] ]
...@@ -22,15 +22,15 @@ public_deps = [ ...@@ -22,15 +22,15 @@ public_deps = [
"//device/fido", "//device/fido",
] ]
type_mappings = [ type_mappings = [
"blink.mojom.AuthenticatorTransport=device::FidoTransportProtocol", "blink.mojom.AuthenticatorTransport=::device::FidoTransportProtocol",
"blink.mojom.PublicKeyCredentialType=device::CredentialType", "blink.mojom.PublicKeyCredentialType=::device::CredentialType",
"blink.mojom.PublicKeyCredentialParameters=device::PublicKeyCredentialParams::CredentialInfo", "blink.mojom.PublicKeyCredentialParameters=::device::PublicKeyCredentialParams::CredentialInfo",
"blink.mojom.PublicKeyCredentialDescriptor=device::PublicKeyCredentialDescriptor", "blink.mojom.PublicKeyCredentialDescriptor=::device::PublicKeyCredentialDescriptor",
"blink.mojom.AuthenticatorAttachment=device::AuthenticatorAttachment", "blink.mojom.AuthenticatorAttachment=::device::AuthenticatorAttachment",
"blink.mojom.UserVerificationRequirement=device::UserVerificationRequirement", "blink.mojom.UserVerificationRequirement=::device::UserVerificationRequirement",
"blink.mojom.AuthenticatorSelectionCriteria=device::AuthenticatorSelectionCriteria", "blink.mojom.AuthenticatorSelectionCriteria=::device::AuthenticatorSelectionCriteria",
"blink.mojom.PublicKeyCredentialRpEntity=device::PublicKeyCredentialRpEntity", "blink.mojom.PublicKeyCredentialRpEntity=::device::PublicKeyCredentialRpEntity",
"blink.mojom.PublicKeyCredentialUserEntity=device::PublicKeyCredentialUserEntity", "blink.mojom.PublicKeyCredentialUserEntity=::device::PublicKeyCredentialUserEntity",
"blink.mojom.CableAuthentication=device::CableDiscoveryData", "blink.mojom.CableAuthentication=::device::CableDiscoveryData",
"blink.mojom.AttestationConveyancePreference=device::AttestationConveyancePreference", "blink.mojom.AttestationConveyancePreference=::device::AttestationConveyancePreference",
] ]
...@@ -13,5 +13,6 @@ sources = [ ...@@ -13,5 +13,6 @@ sources = [
public_deps = [ public_deps = [
"//device/fido", "//device/fido",
] ]
type_mappings = type_mappings = [
[ "blink.test.mojom.ClientToAuthenticatorProtocol=device::ProtocolVersion" ] "blink.test.mojom.ClientToAuthenticatorProtocol=::device::ProtocolVersion",
]
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
mojom = "//content/common/frame_messages.mojom" mojom = "//content/common/frame_messages.mojom"
public_headers = [ "//content/common/frame_messages_forward.h" ] public_headers = [ "//content/common/frame_messages_forward.h" ]
traits_headers = [ "//content/common/frame_messages.h" ] traits_headers = [ "//content/common/frame_messages.h" ]
type_mappings = [ "content.mojom.DidCommitProvisionalLoadParams=std::unique_ptr<::FrameHostMsg_DidCommitProvisionalLoad_Params>[move_only,nullable_is_same_type]" ] type_mappings = [ "content.mojom.DidCommitProvisionalLoadParams=::std::unique_ptr<::FrameHostMsg_DidCommitProvisionalLoad_Params>[move_only,nullable_is_same_type]" ]
...@@ -9,8 +9,8 @@ deps = [ ...@@ -9,8 +9,8 @@ deps = [
"//ui/gfx/ipc", "//ui/gfx/ipc",
] ]
type_mappings = [ type_mappings = [
"content.mojom.SyncCompositorDemandDrawHwParams=content::SyncCompositorDemandDrawHwParams", "content.mojom.SyncCompositorDemandDrawHwParams=::content::SyncCompositorDemandDrawHwParams",
"content.mojom.SyncCompositorSetSharedMemoryParams=content::SyncCompositorSetSharedMemoryParams", "content.mojom.SyncCompositorSetSharedMemoryParams=::content::SyncCompositorSetSharedMemoryParams",
"content.mojom.SyncCompositorDemandDrawSwParams=content::SyncCompositorDemandDrawSwParams", "content.mojom.SyncCompositorDemandDrawSwParams=::content::SyncCompositorDemandDrawSwParams",
"content.mojom.SyncCompositorCommonRendererParams=content::SyncCompositorCommonRendererParams", "content.mojom.SyncCompositorCommonRendererParams=::content::SyncCompositorCommonRendererParams",
] ]
...@@ -65,33 +65,33 @@ public_deps = [ ...@@ -65,33 +65,33 @@ public_deps = [
"//url/ipc:url_ipc", "//url/ipc:url_ipc",
] ]
type_mappings = [ type_mappings = [
"content.mojom.Button=blink::WebPointerProperties::Button", "content.mojom.Button=::blink::WebPointerProperties::Button",
"content.mojom.Cancelability=blink::WebInputEvent::DispatchType", "content.mojom.Cancelability=::blink::WebInputEvent::DispatchType",
"content.mojom.EditCommand=content::EditCommand", "content.mojom.EditCommand=::content::EditCommand",
"content.mojom.Event=std::unique_ptr<content::InputEvent>[move_only]", "content.mojom.Event=::std::unique_ptr<::content::InputEvent>[move_only]",
"content.mojom.EventType=blink::WebInputEvent::Type", "content.mojom.EventType=::blink::WebInputEvent::Type",
"content.mojom.FrameOwnerProperties=content::FrameOwnerProperties", "content.mojom.FrameOwnerProperties=::content::FrameOwnerProperties",
"content.mojom.FrameReplicationState=content::FrameReplicationState", "content.mojom.FrameReplicationState=::content::FrameReplicationState",
"content.mojom.GestureDevice=blink::WebGestureDevice", "content.mojom.GestureDevice=::blink::WebGestureDevice",
"content.mojom.InertialPhaseState=blink::WebGestureEvent::InertialPhaseState", "content.mojom.InertialPhaseState=::blink::WebGestureEvent::InertialPhaseState",
"content.mojom.InputEventAckSource=content::InputEventAckSource", "content.mojom.InputEventAckSource=::content::InputEventAckSource",
"content.mojom.InputEventAckState=content::InputEventAckState", "content.mojom.InputEventAckState=::content::InputEventAckState",
"content.mojom.NetworkConnectionType=net::NetworkChangeNotifier::ConnectionType", "content.mojom.NetworkConnectionType=::net::NetworkChangeNotifier::ConnectionType",
"content.mojom.DidOverscrollParams=ui::DidOverscrollParams", "content.mojom.DidOverscrollParams=::ui::DidOverscrollParams",
"content.mojom.PointerType=blink::WebPointerProperties::PointerType", "content.mojom.PointerType=::blink::WebPointerProperties::PointerType",
"content.mojom.PreferredColorScheme=ui::NativeTheme::PreferredColorScheme", "content.mojom.PreferredColorScheme=::ui::NativeTheme::PreferredColorScheme",
"content.mojom.VisualProperties=content::VisualProperties", "content.mojom.VisualProperties=::content::VisualProperties",
"content.mojom.SystemThemeColor=ui::NativeTheme::SystemThemeColor", "content.mojom.SystemThemeColor=::ui::NativeTheme::SystemThemeColor",
"content.mojom.SyntheticSmoothDrag=content::SyntheticSmoothDragGestureParams", "content.mojom.SyntheticSmoothDrag=::content::SyntheticSmoothDragGestureParams",
"content.mojom.SyntheticSmoothScroll=content::SyntheticSmoothScrollGestureParams", "content.mojom.SyntheticSmoothScroll=::content::SyntheticSmoothScrollGestureParams",
"content.mojom.SyntheticPinch=content::SyntheticPinchGestureParams", "content.mojom.SyntheticPinch=::content::SyntheticPinchGestureParams",
"content.mojom.SyntheticTap=content::SyntheticTapGestureParams", "content.mojom.SyntheticTap=::content::SyntheticTapGestureParams",
"content.mojom.SyntheticPointerAction=content::SyntheticPointerActionListParams", "content.mojom.SyntheticPointerAction=::content::SyntheticPointerActionListParams",
"content.mojom.TouchAction=cc::TouchAction", "content.mojom.TouchAction=::cc::TouchAction",
"content.mojom.TouchActionOptional=cc::TouchAction", "content.mojom.TouchActionOptional=::cc::TouchAction",
"content.mojom.TouchState=blink::WebTouchPoint::State", "content.mojom.TouchState=::blink::WebTouchPoint::State",
"content.mojom.WebCursor=content::WebCursor", "content.mojom.WebCursor=::content::WebCursor",
"content.mojom.WebPopupType=blink::WebPopupType", "content.mojom.WebPopupType=::blink::WebPopupType",
"content.mojom.WebPreferences=content::WebPreferences", "content.mojom.WebPreferences=::content::WebPreferences",
"content.mojom.ScrollGranularity=ui::input_types::ScrollGranularity", "content.mojom.ScrollGranularity=::ui::input_types::ScrollGranularity",
] ]
...@@ -12,4 +12,5 @@ deps = [ ...@@ -12,4 +12,5 @@ deps = [
sources = [ sources = [
"//content/common/render_frame_metadata_mojom_traits.cc", "//content/common/render_frame_metadata_mojom_traits.cc",
] ]
type_mappings = [ "content.mojom.RenderFrameMetadata=cc::RenderFrameMetadata" ] type_mappings =
[ "content.mojom.RenderFrameMetadata=::cc::RenderFrameMetadata" ]
...@@ -6,6 +6,6 @@ mojom = "//content/common/native_types.mojom" ...@@ -6,6 +6,6 @@ mojom = "//content/common/native_types.mojom"
public_headers = [ "//content/public/common/web_preferences.h" ] public_headers = [ "//content/public/common/web_preferences.h" ]
traits_headers = [ "//content/public/common/common_param_traits_macros.h" ] traits_headers = [ "//content/public/common/common_param_traits_macros.h" ]
type_mappings = [ type_mappings = [
"content.mojom.V8CacheOptions=content::V8CacheOptions", "content.mojom.V8CacheOptions=::content::V8CacheOptions",
"content.mojom.WebPreferences=content::WebPreferences", "content.mojom.WebPreferences=::content::WebPreferences",
] ]
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
mojom = "//content/public/common/drop_data.mojom" mojom = "//content/public/common/drop_data.mojom"
public_headers = [ "//content/public/common/drop_data.h" ] public_headers = [ "//content/public/common/drop_data.h" ]
traits_headers = [ "//content/public/common/common_param_traits_macros.h" ] traits_headers = [ "//content/public/common/common_param_traits_macros.h" ]
type_mappings = [ "content.mojom.DropData=content::DropData" ] type_mappings = [ "content.mojom.DropData=::content::DropData" ]
...@@ -14,4 +14,4 @@ public_deps = [ ...@@ -14,4 +14,4 @@ public_deps = [
deps = [ deps = [
"//content:export", "//content:export",
] ]
type_mappings = [ "content.mojom.ResourceType=content::ResourceType" ] type_mappings = [ "content.mojom.ResourceType=::content::ResourceType" ]
...@@ -10,4 +10,4 @@ public_deps = [ ...@@ -10,4 +10,4 @@ public_deps = [
"//skia", "//skia",
] ]
type_mappings = [ "content.mojom.WebPluginInfo=content::WebPluginInfo" ] type_mappings = [ "content.mojom.WebPluginInfo=::content::WebPluginInfo" ]
...@@ -9,5 +9,6 @@ traits_headers = ...@@ -9,5 +9,6 @@ traits_headers =
deps = [ deps = [
"//device/bluetooth", "//device/bluetooth",
] ]
type_mappings = type_mappings = [
[ "bluetooth.mojom.ServiceDataMap=device::BluetoothDevice::ServiceDataMap" ] "bluetooth.mojom.ServiceDataMap=::device::BluetoothDevice::ServiceDataMap",
]
...@@ -8,4 +8,4 @@ traits_headers = [ "//device/bluetooth/public/mojom/uuid_mojom_traits.h" ] ...@@ -8,4 +8,4 @@ traits_headers = [ "//device/bluetooth/public/mojom/uuid_mojom_traits.h" ]
deps = [ deps = [
"//device/bluetooth/public/cpp", "//device/bluetooth/public/cpp",
] ]
type_mappings = [ "bluetooth.mojom.UUID=device::BluetoothUUID" ] type_mappings = [ "bluetooth.mojom.UUID=::device::BluetoothUUID" ]
...@@ -19,13 +19,13 @@ public_deps = [ ...@@ -19,13 +19,13 @@ public_deps = [
# intentionally POD and fixed size so that it can be stored in shared memory # intentionally POD and fixed size so that it can be stored in shared memory
# between hardware polling threads and the rest of the browser. # between hardware polling threads and the rest of the browser.
type_mappings = [ type_mappings = [
"device.mojom.Gamepad=device::Gamepad", "device.mojom.Gamepad=::device::Gamepad",
"device.mojom.GamepadButton=device::GamepadButton", "device.mojom.GamepadButton=::device::GamepadButton",
"device.mojom.GamepadHand=device::GamepadHand", "device.mojom.GamepadHand=::device::GamepadHand",
"device.mojom.GamepadHapticActuator=device::GamepadHapticActuator[nullable_is_same_type]", "device.mojom.GamepadHapticActuator=::device::GamepadHapticActuator[nullable_is_same_type]",
"device.mojom.GamepadHapticActuatorType=device::GamepadHapticActuatorType", "device.mojom.GamepadHapticActuatorType=::device::GamepadHapticActuatorType",
"device.mojom.GamepadMapping=device::GamepadMapping", "device.mojom.GamepadMapping=::device::GamepadMapping",
"device.mojom.GamepadPose=device::GamepadPose[nullable_is_same_type]", "device.mojom.GamepadPose=::device::GamepadPose[nullable_is_same_type]",
"device.mojom.GamepadQuaternion=device::GamepadQuaternion[nullable_is_same_type]", "device.mojom.GamepadQuaternion=::device::GamepadQuaternion[nullable_is_same_type]",
"device.mojom.GamepadVector=device::GamepadVector[nullable_is_same_type]", "device.mojom.GamepadVector=::device::GamepadVector[nullable_is_same_type]",
] ]
...@@ -13,4 +13,4 @@ public_deps = [ ...@@ -13,4 +13,4 @@ public_deps = [
"//base:testfidl", "//base:testfidl",
"//fuchsia/mojom:traits", "//fuchsia/mojom:traits",
] ]
type_mappings = [ "fuchsia.test.mojom.TestInterfaceRequest=fidl::InterfaceRequest<base::fuchsia::testfidl::TestInterface>[move_only]" ] type_mappings = [ "fuchsia.test.mojom.TestInterfaceRequest=::fidl::InterfaceRequest<::base::fuchsia::testfidl::TestInterface>[move_only]" ]
...@@ -9,4 +9,4 @@ deps = [ ...@@ -9,4 +9,4 @@ deps = [
"//gpu/ipc/common:command_buffer_traits", "//gpu/ipc/common:command_buffer_traits",
] ]
type_mappings = [ "gpu.mojom.Capabilities=gpu::Capabilities" ] type_mappings = [ "gpu.mojom.Capabilities=::gpu::Capabilities" ]
...@@ -5,4 +5,4 @@ ...@@ -5,4 +5,4 @@
mojom = "//gpu/ipc/common/context_result.mojom" mojom = "//gpu/ipc/common/context_result.mojom"
public_headers = [ "//gpu/command_buffer/common/context_result.h" ] public_headers = [ "//gpu/command_buffer/common/context_result.h" ]
traits_headers = [ "//gpu/ipc/common/context_result_mojom_traits.h" ] traits_headers = [ "//gpu/ipc/common/context_result_mojom_traits.h" ]
type_mappings = [ "gpu.mojom.ContextResult=gpu::ContextResult" ] type_mappings = [ "gpu.mojom.ContextResult=::gpu::ContextResult" ]
...@@ -8,4 +8,4 @@ traits_headers = [ "//gpu/ipc/common/dx_diag_node_mojom_traits.h" ] ...@@ -8,4 +8,4 @@ traits_headers = [ "//gpu/ipc/common/dx_diag_node_mojom_traits.h" ]
sources = [ sources = [
"//gpu/ipc/common/dx_diag_node_mojom_traits.cc", "//gpu/ipc/common/dx_diag_node_mojom_traits.cc",
] ]
type_mappings = [ "gpu.mojom.DxDiagNode=gpu::DxDiagNode" ] type_mappings = [ "gpu.mojom.DxDiagNode=::gpu::DxDiagNode" ]
...@@ -13,6 +13,6 @@ public_deps = [ ...@@ -13,6 +13,6 @@ public_deps = [
"//ui/gfx/geometry/mojom", "//ui/gfx/geometry/mojom",
] ]
type_mappings = [ type_mappings = [
"gpu.mojom.GpuExtraInfo=gpu::GpuExtraInfo", "gpu.mojom.GpuExtraInfo=::gpu::GpuExtraInfo",
"gpu.mojom.ANGLEFeature=gpu::ANGLEFeature", "gpu.mojom.ANGLEFeature=::gpu::ANGLEFeature",
] ]
...@@ -13,6 +13,6 @@ public_deps = [ ...@@ -13,6 +13,6 @@ public_deps = [
"//ui/gfx/geometry/mojom", "//ui/gfx/geometry/mojom",
] ]
type_mappings = [ type_mappings = [
"gpu.mojom.GpuFeatureStatus=gpu::GpuFeatureStatus", "gpu.mojom.GpuFeatureStatus=::gpu::GpuFeatureStatus",
"gpu.mojom.GpuFeatureInfo=gpu::GpuFeatureInfo", "gpu.mojom.GpuFeatureInfo=::gpu::GpuFeatureInfo",
] ]
...@@ -13,13 +13,13 @@ public_deps = [ ...@@ -13,13 +13,13 @@ public_deps = [
"//ui/gfx/geometry/mojom", "//ui/gfx/geometry/mojom",
] ]
type_mappings = [ type_mappings = [
"gpu.mojom.CollectInfoResult=gpu::CollectInfoResult", "gpu.mojom.CollectInfoResult=::gpu::CollectInfoResult",
"gpu.mojom.Dx12VulkanVersionInfo=gpu::Dx12VulkanVersionInfo", "gpu.mojom.Dx12VulkanVersionInfo=::gpu::Dx12VulkanVersionInfo",
"gpu.mojom.GpuDevice=gpu::GPUInfo::GPUDevice", "gpu.mojom.GpuDevice=::gpu::GPUInfo::GPUDevice",
"gpu.mojom.GpuInfo=gpu::GPUInfo", "gpu.mojom.GpuInfo=::gpu::GPUInfo",
"gpu.mojom.VideoCodecProfile=gpu::VideoCodecProfile", "gpu.mojom.VideoCodecProfile=::gpu::VideoCodecProfile",
"gpu.mojom.VideoDecodeAcceleratorSupportedProfile=gpu::VideoDecodeAcceleratorSupportedProfile", "gpu.mojom.VideoDecodeAcceleratorSupportedProfile=::gpu::VideoDecodeAcceleratorSupportedProfile",
"gpu.mojom.VideoDecodeAcceleratorCapabilities=gpu::VideoDecodeAcceleratorCapabilities", "gpu.mojom.VideoDecodeAcceleratorCapabilities=::gpu::VideoDecodeAcceleratorCapabilities",
"gpu.mojom.VideoEncodeAcceleratorSupportedProfile=gpu::VideoEncodeAcceleratorSupportedProfile", "gpu.mojom.VideoEncodeAcceleratorSupportedProfile=::gpu::VideoEncodeAcceleratorSupportedProfile",
"gpu.mojom.ImageDecodeAcceleratorSupportedProfile=gpu::ImageDecodeAcceleratorSupportedProfile", "gpu.mojom.ImageDecodeAcceleratorSupportedProfile=::gpu::ImageDecodeAcceleratorSupportedProfile",
] ]
...@@ -17,4 +17,4 @@ deps = [ ...@@ -17,4 +17,4 @@ deps = [
sources = [ sources = [
"//gpu/ipc/common/gpu_preferences_mojom_traits.h", "//gpu/ipc/common/gpu_preferences_mojom_traits.h",
] ]
type_mappings = [ "gpu.mojom.GpuPreferences=gpu::GpuPreferences" ] type_mappings = [ "gpu.mojom.GpuPreferences=::gpu::GpuPreferences" ]
...@@ -16,4 +16,4 @@ public_deps = [ ...@@ -16,4 +16,4 @@ public_deps = [
"//mojo/public/cpp/bindings", "//mojo/public/cpp/bindings",
] ]
type_mappings = [ "gpu.mojom.Mailbox=gpu::Mailbox" ] type_mappings = [ "gpu.mojom.Mailbox=::gpu::Mailbox" ]
...@@ -6,6 +6,6 @@ mojom = "//gpu/ipc/common/memory_stats.mojom" ...@@ -6,6 +6,6 @@ mojom = "//gpu/ipc/common/memory_stats.mojom"
public_headers = [ "//gpu/ipc/common/memory_stats.h" ] public_headers = [ "//gpu/ipc/common/memory_stats.h" ]
traits_headers = [ "//gpu/ipc/common/memory_stats_mojom_traits.h" ] traits_headers = [ "//gpu/ipc/common/memory_stats_mojom_traits.h" ]
type_mappings = [ type_mappings = [
"gpu.mojom.VideoMemoryProcessStats=gpu::VideoMemoryUsageStats::ProcessStats", "gpu.mojom.VideoMemoryProcessStats=::gpu::VideoMemoryUsageStats::ProcessStats",
"gpu.mojom.VideoMemoryUsageStats=gpu::VideoMemoryUsageStats", "gpu.mojom.VideoMemoryUsageStats=::gpu::VideoMemoryUsageStats",
] ]
...@@ -15,4 +15,4 @@ public_deps = [ ...@@ -15,4 +15,4 @@ public_deps = [
"//ipc:message_support", "//ipc:message_support",
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "IPC.mojom.Message=IPC::MessageView[move_only]" ] type_mappings = [ "IPC.mojom.Message=::IPC::MessageView[move_only]" ]
...@@ -28,15 +28,15 @@ public_deps = [ ...@@ -28,15 +28,15 @@ public_deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.ResolutionChangePolicy=media::ResolutionChangePolicy", "media.mojom.ResolutionChangePolicy=::media::ResolutionChangePolicy",
"media.mojom.PowerLineFrequency=media::PowerLineFrequency", "media.mojom.PowerLineFrequency=::media::PowerLineFrequency",
"media.mojom.VideoCapturePixelFormat=media::VideoPixelFormat", "media.mojom.VideoCapturePixelFormat=::media::VideoPixelFormat",
"media.mojom.VideoCaptureBufferType=media::VideoCaptureBufferType", "media.mojom.VideoCaptureBufferType=::media::VideoCaptureBufferType",
"media.mojom.VideoCaptureError=media::VideoCaptureError", "media.mojom.VideoCaptureError=::media::VideoCaptureError",
"media.mojom.VideoCaptureFrameDropReason=media::VideoCaptureFrameDropReason", "media.mojom.VideoCaptureFrameDropReason=::media::VideoCaptureFrameDropReason",
"media.mojom.VideoCaptureFormat=media::VideoCaptureFormat", "media.mojom.VideoCaptureFormat=::media::VideoCaptureFormat",
"media.mojom.VideoCaptureParams=media::VideoCaptureParams", "media.mojom.VideoCaptureParams=::media::VideoCaptureParams",
"media.mojom.VideoCaptureDeviceDescriptor=media::VideoCaptureDeviceDescriptor", "media.mojom.VideoCaptureDeviceDescriptor=::media::VideoCaptureDeviceDescriptor",
"media.mojom.VideoCaptureDeviceInfo=media::VideoCaptureDeviceInfo", "media.mojom.VideoCaptureDeviceInfo=::media::VideoCaptureDeviceInfo",
"media.mojom.VideoFacingMode=media::VideoFacingMode", "media.mojom.VideoFacingMode=::media::VideoFacingMode",
] ]
...@@ -18,15 +18,15 @@ deps = [ ...@@ -18,15 +18,15 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.ResolutionChangePolicy=media::ResolutionChangePolicy", "media.mojom.ResolutionChangePolicy=::media::ResolutionChangePolicy",
"media.mojom.PowerLineFrequency=media::PowerLineFrequency", "media.mojom.PowerLineFrequency=::media::PowerLineFrequency",
"media.mojom.VideoCapturePixelFormat=media::VideoPixelFormat", "media.mojom.VideoCapturePixelFormat=::media::VideoPixelFormat",
"media.mojom.VideoCaptureBufferType=media::VideoCaptureBufferType", "media.mojom.VideoCaptureBufferType=::media::VideoCaptureBufferType",
"media.mojom.VideoCaptureError=media::VideoCaptureError", "media.mojom.VideoCaptureError=::media::VideoCaptureError",
"media.mojom.VideoCaptureFrameDropReason=media::VideoCaptureFrameDropReason", "media.mojom.VideoCaptureFrameDropReason=::media::VideoCaptureFrameDropReason",
"media.mojom.VideoCaptureFormat=media::VideoCaptureFormat", "media.mojom.VideoCaptureFormat=::media::VideoCaptureFormat",
"media.mojom.VideoCaptureParams=media::VideoCaptureParams", "media.mojom.VideoCaptureParams=::media::VideoCaptureParams",
"media.mojom.VideoCaptureDeviceDescriptor=media::VideoCaptureDeviceDescriptor", "media.mojom.VideoCaptureDeviceDescriptor=::media::VideoCaptureDeviceDescriptor",
"media.mojom.VideoCaptureDeviceInfo=media::VideoCaptureDeviceInfo", "media.mojom.VideoCaptureDeviceInfo=::media::VideoCaptureDeviceInfo",
"media.mojom.VideoFacingMode=media::VideoFacingMode", "media.mojom.VideoFacingMode=::media::VideoFacingMode",
] ]
...@@ -13,4 +13,4 @@ public_deps = [ ...@@ -13,4 +13,4 @@ public_deps = [
"//fuchsia/mojom:traits", "//fuchsia/mojom:traits",
"//third_party/fuchsia-sdk/sdk:media_drm", "//third_party/fuchsia-sdk/sdk:media_drm",
] ]
type_mappings = [ "media.mojom.CdmRequest=fidl::InterfaceRequest<fuchsia::media::drm::ContentDecryptionModule>[move_only]" ] type_mappings = [ "media.mojom.CdmRequest=::fidl::InterfaceRequest<::fuchsia::media::drm::ContentDecryptionModule>[move_only]" ]
...@@ -13,8 +13,8 @@ public_deps = [ ...@@ -13,8 +13,8 @@ public_deps = [
"//media/learning/common", "//media/learning/common",
] ]
type_mappings = [ type_mappings = [
"media.learning.mojom.LabelledExample=media::learning::LabelledExample", "media.learning.mojom.LabelledExample=::media::learning::LabelledExample",
"media.learning.mojom.FeatureValue=media::learning::FeatureValue", "media.learning.mojom.FeatureValue=::media::learning::FeatureValue",
"media.learning.mojom.TargetValue=media::learning::TargetValue", "media.learning.mojom.TargetValue=::media::learning::TargetValue",
"media.learning.mojom.ObservationCompletion=media::learning::ObservationCompletion", "media.learning.mojom.ObservationCompletion=::media::learning::ObservationCompletion",
] ]
...@@ -6,8 +6,7 @@ mojom = "//media/mojo/mojom/media_types.mojom" ...@@ -6,8 +6,7 @@ mojom = "//media/mojo/mojom/media_types.mojom"
public_headers = [ "//media/base/audio_decoder_config.h" ] public_headers = [ "//media/base/audio_decoder_config.h" ]
traits_headers = traits_headers = [ "//media/mojo/mojom/audio_decoder_config_mojom_traits.h" ]
[ "//media/mojo/mojom/audio_decoder_config_mojom_traits.h" ]
sources = [ sources = [
"//media/mojo/mojom/audio_decoder_config_mojom_traits.cc", "//media/mojo/mojom/audio_decoder_config_mojom_traits.cc",
......
...@@ -7,6 +7,6 @@ public_headers = [ "//media/base/audio_parameters.h" ] ...@@ -7,6 +7,6 @@ public_headers = [ "//media/base/audio_parameters.h" ]
traits_headers = [ "//media/base/ipc/media_param_traits.h" ] traits_headers = [ "//media/base/ipc/media_param_traits.h" ]
deps = [ deps = [
"//media", "//media",
"//media/base/ipc" "//media/base/ipc",
] ]
type_mappings = [ "media.mojom.AudioParameters=media::AudioParameters" ] type_mappings = [ "media.mojom.AudioParameters=::media::AudioParameters" ]
...@@ -6,8 +6,7 @@ mojom = "//media/mojo/mojom/content_decryption_module.mojom" ...@@ -6,8 +6,7 @@ mojom = "//media/mojo/mojom/content_decryption_module.mojom"
public_headers = [ "//media/base/cdm_key_information.h" ] public_headers = [ "//media/base/cdm_key_information.h" ]
traits_headers = traits_headers = [ "//media/mojo/mojom/cdm_key_information_mojom_traits.h" ]
[ "//media/mojo/mojom/cdm_key_information_mojom_traits.h" ]
sources = [ sources = [
"//media/mojo/mojom/cdm_key_information_mojom_traits.cc", "//media/mojo/mojom/cdm_key_information_mojom_traits.cc",
...@@ -18,6 +17,6 @@ public_deps = [ ...@@ -18,6 +17,6 @@ public_deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.CdmKeyInformation=std::unique_ptr<media::CdmKeyInformation>[move_only]", "media.mojom.CdmKeyInformation=::std::unique_ptr<::media::CdmKeyInformation>[move_only]",
"media.mojom.CdmKeyStatus=media::CdmKeyInformation::KeyStatus", "media.mojom.CdmKeyStatus=::media::CdmKeyInformation::KeyStatus",
] ]
...@@ -14,8 +14,8 @@ deps = [ ...@@ -14,8 +14,8 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.CdmProxy.Function=media::CdmProxy::Function", "media.mojom.CdmProxy.Function=::media::CdmProxy::Function",
"media.mojom.CdmProxy.KeyType=media::CdmProxy::KeyType", "media.mojom.CdmProxy.KeyType=::media::CdmProxy::KeyType",
"media.mojom.CdmProxy.Protocol=media::CdmProxy::Protocol", "media.mojom.CdmProxy.Protocol=::media::CdmProxy::Protocol",
"media.mojom.CdmProxy.Status=media::CdmProxy::Status", "media.mojom.CdmProxy.Status=::media::CdmProxy::Status",
] ]
...@@ -20,10 +20,10 @@ deps = [ ...@@ -20,10 +20,10 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.CdmConfig=media::CdmConfig", "media.mojom.CdmConfig=::media::CdmConfig",
"media.mojom.CdmPromiseResult.Exception=media::CdmPromise::Exception", "media.mojom.CdmPromiseResult.Exception=::media::CdmPromise::Exception",
"media.mojom.CdmSessionType=media::CdmSessionType", "media.mojom.CdmSessionType=::media::CdmSessionType",
"media.mojom.CdmMessageType=media::CdmMessageType", "media.mojom.CdmMessageType=::media::CdmMessageType",
"media.mojom.EmeInitDataType=media::EmeInitDataType", "media.mojom.EmeInitDataType=::media::EmeInitDataType",
"media.mojom.HdcpVersion=media::HdcpVersion", "media.mojom.HdcpVersion=::media::HdcpVersion",
] ]
...@@ -14,6 +14,6 @@ deps = [ ...@@ -14,6 +14,6 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.Decryptor.Status=media::Decryptor::Status", "media.mojom.Decryptor.Status=::media::Decryptor::Status",
"media.mojom.Decryptor.StreamType=media::Decryptor::StreamType", "media.mojom.Decryptor.StreamType=::media::Decryptor::StreamType",
] ]
...@@ -14,6 +14,6 @@ deps = [ ...@@ -14,6 +14,6 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.DemuxerStream.Status=media::DemuxerStream::Status", "media.mojom.DemuxerStream.Status=::media::DemuxerStream::Status",
"media.mojom.DemuxerStream.Type=media::DemuxerStream::Type", "media.mojom.DemuxerStream.Type=::media::DemuxerStream::Type",
] ]
...@@ -25,6 +25,6 @@ deps = [ ...@@ -25,6 +25,6 @@ deps = [
# See media_types.typemap for enum mappings. # See media_types.typemap for enum mappings.
type_mappings = [ type_mappings = [
"media.mojom.EncryptionPattern=media::EncryptionPattern", "media.mojom.EncryptionPattern=::media::EncryptionPattern",
"media.mojom.EncryptionScheme=media::EncryptionScheme", "media.mojom.EncryptionScheme=::media::EncryptionScheme",
] ]
...@@ -6,6 +6,6 @@ mojom = "//media/mojo/mojom/media_types.mojom" ...@@ -6,6 +6,6 @@ mojom = "//media/mojo/mojom/media_types.mojom"
public_headers = [ "//media/base/hdr_metadata.h" ] public_headers = [ "//media/base/hdr_metadata.h" ]
traits_headers = [ "//media/mojo/mojom/hdr_metadata_mojom_traits.h" ] traits_headers = [ "//media/mojo/mojom/hdr_metadata_mojom_traits.h" ]
type_mappings = [ type_mappings = [
"media.mojom.MasteringMetadata=media::MasteringMetadata", "media.mojom.MasteringMetadata=::media::MasteringMetadata",
"media.mojom.HDRMetadata=media::HDRMetadata", "media.mojom.HDRMetadata=::media::HDRMetadata",
] ]
...@@ -14,4 +14,4 @@ deps = [ ...@@ -14,4 +14,4 @@ deps = [
"//media", "//media",
] ]
type_mappings = [ "media.mojom.SessionData.KeyType=media::MediaDrmKeyType" ] type_mappings = [ "media.mojom.SessionData.KeyType=::media::MediaDrmKeyType" ]
...@@ -43,27 +43,27 @@ sources = [ ...@@ -43,27 +43,27 @@ sources = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.AudioCodec=media::AudioCodec", "media.mojom.AudioCodec=::media::AudioCodec",
"media.mojom.BufferingState=media::BufferingState", "media.mojom.BufferingState=::media::BufferingState",
"media.mojom.BufferingStateChangeReason=media::BufferingStateChangeReason", "media.mojom.BufferingStateChangeReason=::media::BufferingStateChangeReason",
"media.mojom.ChannelLayout=media::ChannelLayout", "media.mojom.ChannelLayout=::media::ChannelLayout",
"media.mojom.ColorSpace=media::ColorSpace", "media.mojom.ColorSpace=::media::ColorSpace",
"media.mojom.DecodeStatus=media::DecodeStatus", "media.mojom.DecodeStatus=::media::DecodeStatus",
"media.mojom.EncryptionMode=media::EncryptionMode", "media.mojom.EncryptionMode=::media::EncryptionMode",
"media.mojom.EncryptionScheme.CipherMode=media::EncryptionScheme::CipherMode", "media.mojom.EncryptionScheme.CipherMode=::media::EncryptionScheme::CipherMode",
"media.mojom.MediaContainerName=media::container_names::MediaContainerName", "media.mojom.MediaContainerName=::media::container_names::MediaContainerName",
"media.mojom.MediaLogEvent=media::MediaLogEvent", "media.mojom.MediaLogEvent=::media::MediaLogEvent",
"media.mojom.OutputDeviceStatus=media::OutputDeviceStatus", "media.mojom.OutputDeviceStatus=::media::OutputDeviceStatus",
"media.mojom.PipelineStatus=media::PipelineStatus", "media.mojom.PipelineStatus=::media::PipelineStatus",
"media.mojom.SampleFormat=media::SampleFormat", "media.mojom.SampleFormat=::media::SampleFormat",
"media.mojom.SubsampleEntry=media::SubsampleEntry", "media.mojom.SubsampleEntry=::media::SubsampleEntry",
"media.mojom.VideoCodec=media::VideoCodec", "media.mojom.VideoCodec=::media::VideoCodec",
"media.mojom.VideoCodecProfile=media::VideoCodecProfile", "media.mojom.VideoCodecProfile=::media::VideoCodecProfile",
"media.mojom.VideoPixelFormat=media::VideoPixelFormat", "media.mojom.VideoPixelFormat=::media::VideoPixelFormat",
"media.mojom.VideoRotation=media::VideoRotation", "media.mojom.VideoRotation=::media::VideoRotation",
"media.mojom.VideoTransformation=media::VideoTransformation", "media.mojom.VideoTransformation=::media::VideoTransformation",
"media.mojom.WaitingReason=media::WaitingReason", "media.mojom.WaitingReason=::media::WaitingReason",
"media.mojom.WatchTimeKey=media::WatchTimeKey", "media.mojom.WatchTimeKey=::media::WatchTimeKey",
"media.mojom.EncryptionPattern=media::EncryptionPattern", "media.mojom.EncryptionPattern=::media::EncryptionPattern",
"media.mojom.MediaStatusState=media::MediaStatus::State", "media.mojom.MediaStatusState=::media::MediaStatus::State",
] ]
...@@ -6,6 +6,6 @@ mojom = "//media/mojo/mojom/media_types.mojom" ...@@ -6,6 +6,6 @@ mojom = "//media/mojo/mojom/media_types.mojom"
public_headers = [ "//media/base/pipeline_status.h" ] public_headers = [ "//media/base/pipeline_status.h" ]
traits_headers = [ "//media/mojo/mojom/pipeline_status_mojom_traits.h" ] traits_headers = [ "//media/mojo/mojom/pipeline_status_mojom_traits.h" ]
type_mappings = [ type_mappings = [
"media.mojom.PipelineStatistics=media::PipelineStatistics", "media.mojom.PipelineStatistics=::media::PipelineStatistics",
"media.mojom.PipelineDecoderInfo=media::PipelineDecoderInfo", "media.mojom.PipelineDecoderInfo=::media::PipelineDecoderInfo",
] ]
...@@ -9,9 +9,9 @@ public_headers = [ ...@@ -9,9 +9,9 @@ public_headers = [
] ]
traits_headers = [ "//media/mojo/mojom/video_color_space_mojom_traits.h" ] traits_headers = [ "//media/mojo/mojom/video_color_space_mojom_traits.h" ]
type_mappings = [ type_mappings = [
"media.mojom.VideoColorSpace.PrimaryID=media::VideoColorSpace::PrimaryID", "media.mojom.VideoColorSpace.PrimaryID=::media::VideoColorSpace::PrimaryID",
"media.mojom.VideoColorSpace.TransferID=media::VideoColorSpace::TransferID", "media.mojom.VideoColorSpace.TransferID=::media::VideoColorSpace::TransferID",
"media.mojom.VideoColorSpace.MatrixID=media::VideoColorSpace::MatrixID", "media.mojom.VideoColorSpace.MatrixID=::media::VideoColorSpace::MatrixID",
"media.mojom.VideoColorSpace.RangeID=gfx::ColorSpace::RangeID", "media.mojom.VideoColorSpace.RangeID=::gfx::ColorSpace::RangeID",
"media.mojom.VideoColorSpace=media::VideoColorSpace", "media.mojom.VideoColorSpace=::media::VideoColorSpace",
] ]
...@@ -24,7 +24,7 @@ deps = [ ...@@ -24,7 +24,7 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.OverlayInfo=media::OverlayInfo", "media.mojom.OverlayInfo=::media::OverlayInfo",
"media.mojom.SupportedVideoDecoderConfig=media::SupportedVideoDecoderConfig", "media.mojom.SupportedVideoDecoderConfig=::media::SupportedVideoDecoderConfig",
"media.mojom.VideoDecoderImplementation=media::VideoDecoderImplementation", "media.mojom.VideoDecoderImplementation=::media::VideoDecoderImplementation",
] ]
...@@ -6,8 +6,7 @@ mojom = "//media/mojo/mojom/media_types.mojom" ...@@ -6,8 +6,7 @@ mojom = "//media/mojo/mojom/media_types.mojom"
public_headers = [ "//media/base/video_decoder_config.h" ] public_headers = [ "//media/base/video_decoder_config.h" ]
traits_headers = traits_headers = [ "//media/mojo/mojom/video_decoder_config_mojom_traits.h" ]
[ "//media/mojo/mojom/video_decoder_config_mojom_traits.h" ]
sources = [ sources = [
"video_decoder_config_mojom_traits.cc", "video_decoder_config_mojom_traits.cc",
...@@ -24,4 +23,4 @@ deps = [ ...@@ -24,4 +23,4 @@ deps = [
] ]
# See media_types.typemap for enum mappings. # See media_types.typemap for enum mappings.
type_mappings = [ "media.mojom.VideoDecoderConfig=media::VideoDecoderConfig" ] type_mappings = [ "media.mojom.VideoDecoderConfig=::media::VideoDecoderConfig" ]
...@@ -27,9 +27,9 @@ deps = [ ...@@ -27,9 +27,9 @@ deps = [
] ]
type_mappings = [ type_mappings = [
"media.mojom.BitstreamBufferMetadata=media::BitstreamBufferMetadata", "media.mojom.BitstreamBufferMetadata=::media::BitstreamBufferMetadata",
"media.mojom.VideoBitrateAllocation=media::VideoBitrateAllocation", "media.mojom.VideoBitrateAllocation=::media::VideoBitrateAllocation",
"media.mojom.VideoEncodeAccelerator.Error=media::VideoEncodeAccelerator::Error", "media.mojom.VideoEncodeAccelerator.Error=::media::VideoEncodeAccelerator::Error",
"media.mojom.VideoEncodeAcceleratorConfig=media::VideoEncodeAccelerator::Config", "media.mojom.VideoEncodeAcceleratorConfig=::media::VideoEncodeAccelerator::Config",
"media.mojom.Vp8Metadata=media::Vp8Metadata", "media.mojom.Vp8Metadata=::media::Vp8Metadata",
] ]
...@@ -33,4 +33,4 @@ deps = [ ...@@ -33,4 +33,4 @@ deps = [
"//ui/gfx/geometry/mojom:mojom_traits", "//ui/gfx/geometry/mojom:mojom_traits",
] ]
type_mappings = [ "media.mojom.VideoFrame=scoped_refptr<media::VideoFrame>[nullable_is_same_type]" ] type_mappings = [ "media.mojom.VideoFrame=::scoped_refptr<::media::VideoFrame>[nullable_is_same_type]" ]
...@@ -14,4 +14,4 @@ public_deps = [ ...@@ -14,4 +14,4 @@ public_deps = [
"//base", "//base",
] ]
type_mappings = type_mappings =
[ "mojo_base.mojom.ApplicationState=base::android::ApplicationState" ] [ "mojo_base.mojom.ApplicationState=::base::android::ApplicationState" ]
...@@ -9,4 +9,5 @@ public_deps = [ ...@@ -9,4 +9,5 @@ public_deps = [
"//mojo/public/cpp/base", "//mojo/public/cpp/base",
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo_base.mojom.BigBuffer=mojo_base::BigBuffer[move_only]" ] type_mappings =
[ "mojo_base.mojom.BigBuffer=::mojo_base::BigBuffer[move_only]" ]
...@@ -14,4 +14,4 @@ public_deps = [ ...@@ -14,4 +14,4 @@ public_deps = [
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo_base.mojom.BigString=std::string" ] type_mappings = [ "mojo_base.mojom.BigString=::std::string" ]
...@@ -11,4 +11,4 @@ public_deps = [ ...@@ -11,4 +11,4 @@ public_deps = [
] ]
type_mappings = type_mappings =
[ "mojo_base.mojom.File=base::File[move_only,nullable_is_same_type]" ] [ "mojo_base.mojom.File=::base::File[move_only,nullable_is_same_type]" ]
...@@ -10,4 +10,4 @@ public_deps = [ ...@@ -10,4 +10,4 @@ public_deps = [
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo_base.mojom.FileInfo=base::File::Info" ] type_mappings = [ "mojo_base.mojom.FileInfo=::base::File::Info" ]
...@@ -9,4 +9,4 @@ public_deps = [ ...@@ -9,4 +9,4 @@ public_deps = [
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo_base.mojom.FilePath=base::FilePath" ] type_mappings = [ "mojo_base.mojom.FilePath=::base::FilePath" ]
...@@ -10,4 +10,4 @@ sources = [ ...@@ -10,4 +10,4 @@ sources = [
"//mojo/public/cpp/base/memory_allocator_dump_cross_process_uid_mojom_traits.h", "//mojo/public/cpp/base/memory_allocator_dump_cross_process_uid_mojom_traits.h",
] ]
type_mappings = [ "mojo_base.mojom.MemoryAllocatorDumpCrossProcessUid=base::trace_event::MemoryAllocatorDumpGuid" ] type_mappings = [ "mojo_base.mojom.MemoryAllocatorDumpCrossProcessUid=::base::trace_event::MemoryAllocatorDumpGuid" ]
...@@ -13,4 +13,4 @@ sources = [ ...@@ -13,4 +13,4 @@ sources = [
public_deps = [ public_deps = [
"//base", "//base",
] ]
type_mappings = [ "mojo_base.mojom.MemoryPressureLevel=base::MemoryPressureListener::MemoryPressureLevel" ] type_mappings = [ "mojo_base.mojom.MemoryPressureLevel=::base::MemoryPressureListener::MemoryPressureLevel" ]
...@@ -12,4 +12,4 @@ sources = [ ...@@ -12,4 +12,4 @@ sources = [
public_deps = [ public_deps = [
"//base", "//base",
] ]
type_mappings = [ "mojo_base.mojom.MessagePumpType=base::MessagePumpType" ] type_mappings = [ "mojo_base.mojom.MessagePumpType=::base::MessagePumpType" ]
...@@ -11,4 +11,4 @@ sources = [ ...@@ -11,4 +11,4 @@ sources = [
] ]
type_mappings = type_mappings =
[ "mojo_base.mojom.ProcessId=base::ProcessId[copyable_pass_by_value]" ] [ "mojo_base.mojom.ProcessId=::base::ProcessId[copyable_pass_by_value]" ]
...@@ -10,4 +10,4 @@ public_deps = [ ...@@ -10,4 +10,4 @@ public_deps = [
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo_base.mojom.ReadOnlyBuffer=base::span<const uint8_t>[copyable_pass_by_value,force_serialize]" ] type_mappings = [ "mojo_base.mojom.ReadOnlyBuffer=::base::span<const ::uint8_t>[copyable_pass_by_value,force_serialize]" ]
...@@ -14,4 +14,4 @@ public_deps = [ ...@@ -14,4 +14,4 @@ public_deps = [
"//mojo/public/cpp/base", "//mojo/public/cpp/base",
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo.common.mojom.RefCountedMemory=scoped_refptr<base::RefCountedMemory>[copyable_pass_by_value,nullable_is_same_type]" ] type_mappings = [ "mojo.common.mojom.RefCountedMemory=::scoped_refptr<::base::RefCountedMemory>[copyable_pass_by_value,nullable_is_same_type]" ]
...@@ -15,10 +15,10 @@ public_deps = [ ...@@ -15,10 +15,10 @@ public_deps = [
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ type_mappings = [
"mojo_base.mojom.PlatformSharedMemoryHandle=base::subtle::PlatformSharedMemoryRegion::ScopedPlatformHandle[move_only]", "mojo_base.mojom.PlatformSharedMemoryHandle=::base::subtle::PlatformSharedMemoryRegion::ScopedPlatformHandle[move_only]",
"mojo_base.mojom.PlatformSharedMemoryRegion=base::subtle::PlatformSharedMemoryRegion[move_only]", "mojo_base.mojom.PlatformSharedMemoryRegion=::base::subtle::PlatformSharedMemoryRegion[move_only]",
"mojo_base.mojom.PlatformSharedMemoryRegion.Mode=base::subtle::PlatformSharedMemoryRegion::Mode", "mojo_base.mojom.PlatformSharedMemoryRegion.Mode=::base::subtle::PlatformSharedMemoryRegion::Mode",
"mojo_base.mojom.ReadOnlySharedMemoryRegion=base::ReadOnlySharedMemoryRegion[move_only,nullable_is_same_type]", "mojo_base.mojom.ReadOnlySharedMemoryRegion=::base::ReadOnlySharedMemoryRegion[move_only,nullable_is_same_type]",
"mojo_base.mojom.UnsafeSharedMemoryRegion=base::UnsafeSharedMemoryRegion[move_only,nullable_is_same_type]", "mojo_base.mojom.UnsafeSharedMemoryRegion=::base::UnsafeSharedMemoryRegion[move_only,nullable_is_same_type]",
"mojo_base.mojom.WritableSharedMemoryRegion=base::WritableSharedMemoryRegion[move_only,nullable_is_same_type]", "mojo_base.mojom.WritableSharedMemoryRegion=::base::WritableSharedMemoryRegion[move_only,nullable_is_same_type]",
] ]
...@@ -14,6 +14,6 @@ public_deps = [ ...@@ -14,6 +14,6 @@ public_deps = [
] ]
type_mappings = [ type_mappings = [
"mojo_base.mojom.BigString16=base::string16", "mojo_base.mojom.BigString16=::base::string16",
"mojo_base.mojom.String16=base::string16", "mojo_base.mojom.String16=::base::string16",
] ]
...@@ -12,4 +12,4 @@ sources = [ ...@@ -12,4 +12,4 @@ sources = [
public_deps = [ public_deps = [
"//base:i18n", "//base:i18n",
] ]
type_mappings = [ "mojo_base.mojom.TextDirection=base::i18n::TextDirection" ] type_mappings = [ "mojo_base.mojom.TextDirection=::base::i18n::TextDirection" ]
...@@ -10,4 +10,4 @@ sources = [ ...@@ -10,4 +10,4 @@ sources = [
"//mojo/public/cpp/base/thread_priority_mojom_traits.h", "//mojo/public/cpp/base/thread_priority_mojom_traits.h",
] ]
type_mappings = [ "mojo_base.mojom.ThreadPriority=base::ThreadPriority" ] type_mappings = [ "mojo_base.mojom.ThreadPriority=::base::ThreadPriority" ]
...@@ -11,7 +11,7 @@ public_deps = [ ...@@ -11,7 +11,7 @@ public_deps = [
] ]
type_mappings = [ type_mappings = [
"mojo_base.mojom.Time=base::Time[copyable_pass_by_value]", "mojo_base.mojom.Time=::base::Time[copyable_pass_by_value]",
"mojo_base.mojom.TimeDelta=base::TimeDelta[copyable_pass_by_value]", "mojo_base.mojom.TimeDelta=::base::TimeDelta[copyable_pass_by_value]",
"mojo_base.mojom.TimeTicks=base::TimeTicks[copyable_pass_by_value]", "mojo_base.mojom.TimeTicks=::base::TimeTicks[copyable_pass_by_value]",
] ]
...@@ -9,4 +9,4 @@ public_deps = [ ...@@ -9,4 +9,4 @@ public_deps = [
"//base", "//base",
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo_base.mojom.Token=base::Token" ] type_mappings = [ "mojo_base.mojom.Token=::base::Token" ]
...@@ -9,4 +9,4 @@ public_deps = [ ...@@ -9,4 +9,4 @@ public_deps = [
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ "mojo_base.mojom.UnguessableToken=base::UnguessableToken" ] type_mappings = [ "mojo_base.mojom.UnguessableToken=::base::UnguessableToken" ]
...@@ -10,7 +10,7 @@ public_deps = [ ...@@ -10,7 +10,7 @@ public_deps = [
"//mojo/public/cpp/base:shared_typemap_traits", "//mojo/public/cpp/base:shared_typemap_traits",
] ]
type_mappings = [ type_mappings = [
"mojo_base.mojom.Value=base::Value[move_only]", "mojo_base.mojom.Value=::base::Value[move_only]",
"mojo_base.mojom.DictionaryValue=base::Value[move_only]", "mojo_base.mojom.DictionaryValue=::base::Value[move_only]",
"mojo_base.mojom.ListValue=base::Value[move_only]", "mojo_base.mojom.ListValue=::base::Value[move_only]",
] ]
...@@ -1472,7 +1472,7 @@ sources = [ ...@@ -1472,7 +1472,7 @@ sources = [
] ]
public_deps = [ "//ui/gfx/geometry" ] public_deps = [ "//ui/gfx/geometry" ]
type_mappings = [ type_mappings = [
"gfx.mojom.Rect=gfx::Rect", "gfx.mojom.Rect=::gfx::Rect",
] ]
``` ```
......
...@@ -13,6 +13,6 @@ traits_headers = [ ...@@ -13,6 +13,6 @@ traits_headers = [
] ]
type_mappings = [ type_mappings = [
"mojo.test.TypemappedRect=mojo::test::RectBlink[hashable]", "mojo.test.TypemappedRect=::mojo::test::RectBlink[hashable]",
"mojo.test.SharedTypemappedRect=mojo::test::SharedRect", "mojo.test.SharedTypemappedRect=::mojo::test::SharedRect",
] ]
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment