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

Side by Side Diff: third_party/WebKit/Source/core/html/track/TextTrackContainer.cpp

Issue 1844223002: Literal AtomicString construction can rely on strlen optimization. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2012 Google Inc. All rights reserved. 3 * Copyright (C) 2012 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 8 *
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 25 matching lines...) Expand all
36 namespace blink { 36 namespace blink {
37 37
38 TextTrackContainer::TextTrackContainer(Document& document) 38 TextTrackContainer::TextTrackContainer(Document& document)
39 : HTMLDivElement(document) 39 : HTMLDivElement(document)
40 { 40 {
41 } 41 }
42 42
43 PassRefPtrWillBeRawPtr<TextTrackContainer> TextTrackContainer::create(Document& document) 43 PassRefPtrWillBeRawPtr<TextTrackContainer> TextTrackContainer::create(Document& document)
44 { 44 {
45 RefPtrWillBeRawPtr<TextTrackContainer> element = adoptRefWillBeNoop(new Text TrackContainer(document)); 45 RefPtrWillBeRawPtr<TextTrackContainer> element = adoptRefWillBeNoop(new Text TrackContainer(document));
46 element->setShadowPseudoId(AtomicString("-webkit-media-text-track-container" , AtomicString::ConstructFromLiteral)); 46 element->setShadowPseudoId(AtomicString("-webkit-media-text-track-container" ));
47 return element.release(); 47 return element.release();
48 } 48 }
49 49
50 LayoutObject* TextTrackContainer::createLayoutObject(const ComputedStyle&) 50 LayoutObject* TextTrackContainer::createLayoutObject(const ComputedStyle&)
51 { 51 {
52 return new LayoutTextTrackContainer(this); 52 return new LayoutTextTrackContainer(this);
53 } 53 }
54 54
55 void TextTrackContainer::updateDisplay(HTMLMediaElement& mediaElement, ExposingC ontrols exposingControls) 55 void TextTrackContainer::updateDisplay(HTMLMediaElement& mediaElement, ExposingC ontrols exposingControls)
56 { 56 {
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 121
122 cue->updateDisplay(*this); 122 cue->updateDisplay(*this);
123 cue->updatePastAndFutureNodes(movieTime); 123 cue->updatePastAndFutureNodes(movieTime);
124 } 124 }
125 125
126 // 11. Return output. 126 // 11. Return output.
127 // See the note for step 3 for why there is no output to return. 127 // See the note for step 3 for why there is no output to return.
128 } 128 }
129 129
130 } // namespace blink 130 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698