| Index: third_party/WebKit/Source/platform/ContentType.cpp
|
| diff --git a/third_party/WebKit/Source/platform/ContentType.cpp b/third_party/WebKit/Source/platform/ContentType.cpp
|
| index c40389f06280ebe1e6864371de5c996f63908362..08bf0489606e754a6232f5dddf0986447b60160d 100644
|
| --- a/third_party/WebKit/Source/platform/ContentType.cpp
|
| +++ b/third_party/WebKit/Source/platform/ContentType.cpp
|
| @@ -1,6 +1,7 @@
|
| /*
|
| * Copyright (C) 2006, 2008 Apple Inc. All rights reserved.
|
| - * Copyright (C) 2008 Torch Mobile Inc. All rights reserved. (http://www.torchmobile.com/)
|
| + * Copyright (C) 2008 Torch Mobile Inc. All rights reserved.
|
| + * (http://www.torchmobile.com/)
|
| * Copyright (C) 2009 Google Inc. All rights reserved.
|
| *
|
| * Redistribution and use in source and binary forms, with or without
|
| @@ -35,7 +36,8 @@ String ContentType::parameter(const String& parameterName) const {
|
| String parameterValue;
|
| String strippedType = m_type.stripWhiteSpace();
|
|
|
| - // a MIME type can have one or more "param=value" after a semi-colon, and separated from each other by semi-colons
|
| + // a MIME type can have one or more "param=value" after a semi-colon, and
|
| + // separated from each other by semi-colons
|
| size_t semi = strippedType.find(';');
|
| if (semi != kNotFound) {
|
| size_t start =
|
|
|