X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=src%2Fcomponents%2Furl_matcher%2Furl_matcher.cc;h=13a4896e20f259a8c4aeb1d24d50ede9ebdffe58;hb=3545e9f2671f595d2a2f3ee75ca0393b01e35ef6;hp=3798f7ebcfde1d6ebd90df41a7d2f496e4390e38;hpb=7d210d4c7e9ba36e635eabc5b5780495f8a63292;p=platform%2Fframework%2Fweb%2Fcrosswalk.git diff --git a/src/components/url_matcher/url_matcher.cc b/src/components/url_matcher/url_matcher.cc index 3798f7e..13a4896 100644 --- a/src/components/url_matcher/url_matcher.cc +++ b/src/components/url_matcher/url_matcher.cc @@ -8,6 +8,7 @@ #include #include "base/logging.h" +#include "base/profiler/scoped_profile.h" #include "url/gurl.h" #include "url/url_canon.h" @@ -1081,6 +1082,10 @@ void URLMatcher::UpdateConditionFactory() { } void URLMatcher::UpdateInternalDatastructures() { + // TODO(vadimt): Remove ScopedProfile below once crbug.com/417106 is fixed. + tracked_objects::ScopedProfile tracking_profile( + FROM_HERE_WITH_EXPLICIT_FUNCTION( + "URLMatcher_UpdateInternalDatastructures")); UpdateSubstringSetMatcher(false); UpdateSubstringSetMatcher(true); UpdateRegexSetMatcher();