• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2014 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 #include "chrome/installer/util/non_updating_app_registration_data.h"
6 
NonUpdatingAppRegistrationData(const base::string16 & key_path)7 NonUpdatingAppRegistrationData::NonUpdatingAppRegistrationData(
8     const base::string16& key_path) : key_path_(key_path) {}
9 
~NonUpdatingAppRegistrationData()10 NonUpdatingAppRegistrationData::~NonUpdatingAppRegistrationData() {}
11 
GetAppGuid() const12 base::string16 NonUpdatingAppRegistrationData::GetAppGuid() const {
13   return base::string16();
14 }
15 
GetStateKey() const16 base::string16 NonUpdatingAppRegistrationData::GetStateKey() const {
17   return key_path_;
18 }
19 
GetStateMediumKey() const20 base::string16 NonUpdatingAppRegistrationData::GetStateMediumKey() const {
21   return key_path_;
22 }
23 
GetVersionKey() const24 base::string16 NonUpdatingAppRegistrationData::GetVersionKey() const {
25   return key_path_;
26 }
27