Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(316)

Side by Side Diff: chrome/browser/google/google_util_chromeos.h

Issue 11412067: [rlz,cros] RLZ glue for ChromeOS. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Always save RLZ enabled flag. Created 8 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 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.
4
5 #ifndef CHROME_BROWSER_GOOGLE_GOOGLE_UTIL_CHROMEOS_H_
6 #define CHROME_BROWSER_GOOGLE_GOOGLE_UTIL_CHROMEOS_H_
7
8 #include <string>
9
10 #include "base/callback_forward.h"
11
12 namespace google_util {
13 namespace chromeos {
14
15 // Returns the brand code stored in Local State that has been assigned to a
16 // partner. Returns empty string if the information is not available.
17 std::string GetBrand();
18
19 // Reads the brand code from a board-specific file and stores it to Local State.
Peter Kasting 2012/12/01 03:06:22 "board" is slightly unclear here... does the brand
Ivan Korotkov 2012/12/02 12:01:15 Yes, right now the brand code depends on the mainb
20 // |callback| is invoked on the calling thread after that.
21 void SetBrandFromFile(const base::Closure& callback);
22
23 } // namespace chromeos
24 } // namespace google_util
25
26 #endif // CHROME_BROWSER_GOOGLE_GOOGLE_UTIL_CHROMEOS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698