Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(42)

Side by Side Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h

Issue 2243473002: Adding overflow menu to media player (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>. 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>.
3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 break; 458 break;
459 case MediaTrackSelectionCheckmarkPart: 459 case MediaTrackSelectionCheckmarkPart:
460 m_value.valueID = CSSValueInternalMediaTrackSelectionCheckmark; 460 m_value.valueID = CSSValueInternalMediaTrackSelectionCheckmark;
461 break; 461 break;
462 case MediaClosedCaptionsIconPart: 462 case MediaClosedCaptionsIconPart:
463 m_value.valueID = CSSValueInternalMediaClosedCaptionsIcon; 463 m_value.valueID = CSSValueInternalMediaClosedCaptionsIcon;
464 break; 464 break;
465 case MediaSubtitlesIconPart: 465 case MediaSubtitlesIconPart:
466 m_value.valueID = CSSValueInternalMediaSubtitlesIcon; 466 m_value.valueID = CSSValueInternalMediaSubtitlesIcon;
467 break; 467 break;
468 case MediaOverflowMenuButtonPart:
469 m_value.valueID = CSSValueInternalOverflowMenuButton;
470 break;
468 case MenulistPart: 471 case MenulistPart:
469 m_value.valueID = CSSValueMenulist; 472 m_value.valueID = CSSValueMenulist;
470 break; 473 break;
471 case MenulistButtonPart: 474 case MenulistButtonPart:
472 m_value.valueID = CSSValueMenulistButton; 475 m_value.valueID = CSSValueMenulistButton;
473 break; 476 break;
474 case MenulistTextPart: 477 case MenulistTextPart:
475 m_value.valueID = CSSValueMenulistText; 478 m_value.valueID = CSSValueMenulistText;
476 break; 479 break;
477 case MenulistTextFieldPart: 480 case MenulistTextFieldPart:
(...skipping 4233 matching lines...) Expand 10 before | Expand all | Expand 10 after
4711 default: 4714 default:
4712 break; 4715 break;
4713 } 4716 }
4714 ASSERT_NOT_REACHED(); 4717 ASSERT_NOT_REACHED();
4715 return ContainsNone; 4718 return ContainsNone;
4716 } 4719 }
4717 4720
4718 } // namespace blink 4721 } // namespace blink
4719 4722
4720 #endif 4723 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698