[Android] Added UMA for search by image context menu.
[chromium-blink-merge.git] / chrome / installer / util / google_chrome_binaries_distribution.h
blobded49b8c1dc387c060d3032d8aade0112ee16994
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 // This file declares a class that contains various method related to branding.
7 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
8 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_
10 #include "chrome/installer/util/chromium_binaries_distribution.h"
12 class GoogleChromeBinariesDistribution : public ChromiumBinariesDistribution {
13 public:
14 virtual string16 GetAppGuid();
16 virtual string16 GetAppShortCutName();
18 virtual string16 GetStateKey();
20 virtual string16 GetStateMediumKey();
22 virtual string16 GetVersionKey();
24 virtual void UpdateInstallStatus(bool system_install,
25 installer::ArchiveType archive_type,
26 installer::InstallStatus install_status);
28 protected:
29 friend class BrowserDistribution;
31 GoogleChromeBinariesDistribution();
33 private:
34 DISALLOW_COPY_AND_ASSIGN(GoogleChromeBinariesDistribution);
37 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_BINARIES_DISTRIBUTION_H_