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

Side by Side Diff: third_party/WebKit/Source/platform/image-decoders/jpeg/JPEGImageDecoder.cpp

Issue 1627713002: Add more missing closing namespace comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, address comment (also filed llvm.org/PR26290) Created 4 years, 11 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) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * 3 *
4 * Portions are Copyright (C) 2001-6 mozilla.org 4 * Portions are Copyright (C) 2001-6 mozilla.org
5 * 5 *
6 * Other contributors: 6 * Other contributors:
7 * Stuart Parmenter <stuart@mozilla.com> 7 * Stuart Parmenter <stuart@mozilla.com>
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public 10 * modify it under the terms of the GNU Lesser General Public
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after
1069 // If we couldn't decode the image but have received all the data, decoding 1069 // If we couldn't decode the image but have received all the data, decoding
1070 // has failed. 1070 // has failed.
1071 if (!m_reader->decode(onlySize) && isAllDataReceived()) 1071 if (!m_reader->decode(onlySize) && isAllDataReceived())
1072 setFailed(); 1072 setFailed();
1073 1073
1074 // If decoding is done or failed, we don't need the JPEGImageReader anymore. 1074 // If decoding is done or failed, we don't need the JPEGImageReader anymore.
1075 if (isComplete(this, onlySize) || failed()) 1075 if (isComplete(this, onlySize) || failed())
1076 m_reader.clear(); 1076 m_reader.clear();
1077 } 1077 }
1078 1078
1079 } 1079 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698