cygprofile: increase timeouts to allow showing web contents
[chromium-blink-merge.git] / ios / chrome / browser / google / google_brand.mm
blob4580c5b086b2a27ac5b84f84604c142b8e47119b
1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "ios/chrome/browser/google/google_brand.h"
7 #include "ios/public/provider/chrome/browser/chrome_browser_provider.h"
9 namespace ios {
10 namespace google_brand {
12 bool GetBrand(std::string* brand) {
13   if (!ios::GetChromeBrowserProvider())
14     return false;
16   brand->assign(ios::GetChromeBrowserProvider()->GetDistributionBrandCode());
17   return true;
20 bool IsOrganic(const std::string& brand) {
21   // An empty brand string on iOS is used for organic installation. All other
22   // iOS brand string are non-organic.
23   return brand.empty();
26 }  // namespace google_brand
27 }  // namespace ios