| Index: webkit/glue/context_menu.h
|
| diff --git a/webkit/glue/context_menu.h b/webkit/glue/context_menu.h
|
| index bdeba6c5b30e82cd0b2131c5ddf66ac1289a4098..e4b556b4272a634ca69a5a73890a565b25d9a778 100644
|
| --- a/webkit/glue/context_menu.h
|
| +++ b/webkit/glue/context_menu.h
|
| @@ -82,8 +82,11 @@ struct ContextMenuMediaParams {
|
| // playing, muted, etc.
|
| int32 player_state;
|
|
|
| + // Whether a playable audio track is present.
|
| + bool has_audio;
|
| +
|
| ContextMenuMediaParams()
|
| - : player_state(NO_STATE) {
|
| + : player_state(NO_STATE), has_audio(false) {
|
| }
|
| };
|
|
|
|
|