Commit a135f4d3 authored by Takuto Ikuta's avatar Takuto Ikuta Committed by Commit Bot

Remove -Wno-enum-compare-switch flag

This CL is part of
https://chromium-review.googlesource.com/c/chromium/src/+/1286016

This CL was uploaded by git cl split.

R=jkrcal@chromium.org

Bug: 753973
Change-Id: Id1503ebb271fd19492e49d98e821412d67cbc5aa
Reviewed-on: https://chromium-review.googlesource.com/c/1288171Reviewed-by: default avatarMarc Treib <treib@chromium.org>
Commit-Queue: Takuto Ikuta <tikuta@chromium.org>
Cr-Commit-Position: refs/heads/master@{#601083}
parent c15023d8
......@@ -216,14 +216,14 @@ void AutofillProfileSyncBridge::ActOnLocalChange(
GetAutofillTable(), syncer::AUTOFILL_PROFILE);
switch (change.type()) {
case AutofillChange::ADD:
case AutofillChange::UPDATE:
case AutofillProfileChange::ADD:
case AutofillProfileChange::UPDATE:
change_processor()->Put(
change.key(),
CreateEntityDataFromAutofillProfile(*change.data_model()),
metadata_change_list.get());
break;
case AutofillChange::REMOVE:
case AutofillProfileChange::REMOVE:
// Removals have no data_model() so this change can still be for a
// SERVER_PROFILE. We have no simple way to rule it out. For the time
// being we rely on the processor ignoring deletions for storage keys it
......
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