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

Side by Side Diff: Source/core/html/track/vtt/VTTParser.h

Issue 102403002: Make VTTParser::collectDigitsToInt non-copying (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years 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) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 ParseState collectCueText(const String&); 126 ParseState collectCueText(const String&);
127 ParseState recoverCue(const String&); 127 ParseState recoverCue(const String&);
128 ParseState ignoreBadCue(const String&); 128 ParseState ignoreBadCue(const String&);
129 129
130 void createNewCue(); 130 void createNewCue();
131 void resetCueValues(); 131 void resetCueValues();
132 132
133 void collectMetadataHeader(const String&); 133 void collectMetadataHeader(const String&);
134 void createNewRegion(const String& headerValue); 134 void createNewRegion(const String& headerValue);
135 135
136 static String collectDigits(const String&, unsigned*);
137 static void skipWhiteSpace(const String&, unsigned*); 136 static void skipWhiteSpace(const String&, unsigned*);
138 137
139 BufferedLineReader m_lineReader; 138 BufferedLineReader m_lineReader;
140 OwnPtr<TextResourceDecoder> m_decoder; 139 OwnPtr<TextResourceDecoder> m_decoder;
141 String m_currentId; 140 String m_currentId;
142 double m_currentStartTime; 141 double m_currentStartTime;
143 double m_currentEndTime; 142 double m_currentEndTime;
144 StringBuilder m_currentContent; 143 StringBuilder m_currentContent;
145 String m_currentSettings; 144 String m_currentSettings;
146 145
147 VTTParserClient* m_client; 146 VTTParserClient* m_client;
148 147
149 Vector<RefPtr<VTTCue> > m_cuelist; 148 Vector<RefPtr<VTTCue> > m_cuelist;
150 149
151 Vector<RefPtr<VTTRegion> > m_regionList; 150 Vector<RefPtr<VTTRegion> > m_regionList;
152 }; 151 };
153 152
154 } // namespace WebCore 153 } // namespace WebCore
155 154
156 #endif 155 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/html/track/vtt/VTTParser.cpp » ('j') | Source/core/html/track/vtt/VTTParser.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698