summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--chrome/browser/rlz/rlz.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/rlz/rlz.cc b/chrome/browser/rlz/rlz.cc
index 20436a7..1518fd4 100644
--- a/chrome/browser/rlz/rlz.cc
+++ b/chrome/browser/rlz/rlz.cc
@@ -303,7 +303,8 @@ class DelayedInitTask : public Task {
const wchar_t** found = std::find(&kBrands[0], end, brand);
if (found != end)
return true;
- if (StartsWith(brand, L"EUB", true) || StartsWith(brand, L"EUC", true))
+ if (StartsWith(brand, L"EUB", true) || StartsWith(brand, L"EUC", true) ||
+ StartsWith(brand, L"GGR", true))
return true;
return false;
}