| Index: content/common/cc_messages.cc
|
| diff --git a/content/common/cc_messages.cc b/content/common/cc_messages.cc
|
| index 4313e1a1175ad8c69ae2bb95d18f0803ea17706b..4ae8ac85fda3195da6f0c1bdb10159056c2a0b56 100644
|
| --- a/content/common/cc_messages.cc
|
| +++ b/content/common/cc_messages.cc
|
| @@ -40,6 +40,11 @@ void ParamTraits<WebKit::WebFilterOperation>::Write(
|
| WriteParam(m, p.zoomRect());
|
| WriteParam(m, p.amount());
|
| break;
|
| + default:
|
| + // FIXME: temporary place holder to prevent build failures
|
| + // (pending a new FilterType).
|
| + NOTREACHED();
|
| + break;
|
| }
|
| }
|
|
|
| @@ -102,6 +107,11 @@ bool ParamTraits<WebKit::WebFilterOperation>::Read(
|
| success = true;
|
| }
|
| break;
|
| + default:
|
| + // FIXME: temporary place holder to prevent build failures
|
| + // (pending a new FilterType).
|
| + NOTREACHED();
|
| + break;
|
| }
|
| return success;
|
| }
|
| @@ -143,6 +153,11 @@ void ParamTraits<WebKit::WebFilterOperation>::Log(
|
| l->append(", ");
|
| LogParam(p.amount(), l);
|
| break;
|
| + default:
|
| + // FIXME: temporary place holder to prevent build failures
|
| + // (pending a new FilterType).
|
| + NOTREACHED();
|
| + break;
|
| }
|
| l->append(")");
|
| }
|
|
|