summaryrefslogtreecommitdiffstats
path: root/chrome/browser/google/google_brand_chromeos.h
blob: 51e1afd04b4e3d48e7fc2b247b29d45a9e37a307 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CHROME_BROWSER_GOOGLE_GOOGLE_BRAND_CHROMEOS_H_
#define CHROME_BROWSER_GOOGLE_GOOGLE_BRAND_CHROMEOS_H_

#include <string>

#include "base/callback_forward.h"

namespace google_brand {
namespace chromeos {

// Returns the brand code stored in Local State that has been assigned to a
// partner. Returns empty string if the information is not available.
std::string GetBrand();

// Clears brand code for the current session (not persisted through browser
// restart). Future calls to GetBrand() will return an empty string.
void ClearBrandForCurrentSession();

// Reads the brand code from a board-specific data file and stores it to
// Local State.
// |callback| is invoked on the calling thread after that.
void InitBrand(const base::Closure& callback);

}  // namespace chromeos
}  // namespace google_brand

#endif  // CHROME_BROWSER_GOOGLE_GOOGLE_BRAND_CHROMEOS_H_