Cleanup: Remove unnecessary semicolons in url_pattern_set.h.

Review URL: https://codereview.chromium.org/292623003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272605 0039d316-1c4b-4281-b951-d872f2087c98
parent 51c7985e
...@@ -207,6 +207,7 @@ Kyle Nahrgang <kpn24@drexel.edu> ...@@ -207,6 +207,7 @@ Kyle Nahrgang <kpn24@drexel.edu>
Kyung Yeol Kim <chitacan@gmail.com> Kyung Yeol Kim <chitacan@gmail.com>
Laszlo Gombos <l.gombos@samsung.com> Laszlo Gombos <l.gombos@samsung.com>
Laszlo Radanyi <bekkra@gmail.com> Laszlo Radanyi <bekkra@gmail.com>
Lauren Yeun Kim <lauren.yeun.kim@gmail.com>
Lauri Oherd <lauri.oherd@gmail.com> Lauri Oherd <lauri.oherd@gmail.com>
Leith Bade <leith@leithalweapon.geek.nz> Leith Bade <leith@leithalweapon.geek.nz>
Li Yin <li.yin@intel.com> Li Yin <li.yin@intel.com>
......
...@@ -176,14 +176,14 @@ class URLPattern { ...@@ -176,14 +176,14 @@ class URLPattern {
if (a.match_all_urls_ && b.match_all_urls_) if (a.match_all_urls_ && b.match_all_urls_)
return false; return false;
return a.host_.compare(b.host_) < 0; return a.host_.compare(b.host_) < 0;
}; }
// Used for origin comparisons in a std::set. // Used for origin comparisons in a std::set.
class EffectiveHostCompareFunctor { class EffectiveHostCompareFunctor {
public: public:
bool operator()(const URLPattern& a, const URLPattern& b) const { bool operator()(const URLPattern& a, const URLPattern& b) const {
return EffectiveHostCompare(a, b); return EffectiveHostCompare(a, b);
}; }
}; };
// Get an error string for a ParseResult. // Get an error string for a ParseResult.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment