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>
Kyung Yeol Kim <chitacan@gmail.com>
Laszlo Gombos <l.gombos@samsung.com>
Laszlo Radanyi <bekkra@gmail.com>
Lauren Yeun Kim <lauren.yeun.kim@gmail.com>
Lauri Oherd <lauri.oherd@gmail.com>
Leith Bade <leith@leithalweapon.geek.nz>
Li Yin <li.yin@intel.com>
......
......@@ -176,14 +176,14 @@ class URLPattern {
if (a.match_all_urls_ && b.match_all_urls_)
return false;
return a.host_.compare(b.host_) < 0;
};
}
// Used for origin comparisons in a std::set.
class EffectiveHostCompareFunctor {
public:
bool operator()(const URLPattern& a, const URLPattern& b) const {
return EffectiveHostCompare(a, b);
};
}
};
// 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