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

Side by Side Diff: chrome/installer/util/google_chrome_distribution.cc

Issue 15255004: Refactor of BrowserDistribution. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 7 months 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 // 4 //
5 // This file defines specific implementation of BrowserDistribution class for 5 // This file defines specific implementation of BrowserDistribution class for
6 // Google Chrome. 6 // Google Chrome.
7 7
8 #include "chrome/installer/util/google_chrome_distribution.h" 8 #include "chrome/installer/util/google_chrome_distribution.h"
9 9
10 #include <windows.h> 10 #include <windows.h>
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 product_guid()); 271 product_guid());
272 } 272 }
273 273
274 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { 274 bool GoogleChromeDistribution::ShouldSetExperimentLabels() {
275 return true; 275 return true;
276 } 276 }
277 277
278 bool GoogleChromeDistribution::HasUserExperiments() { 278 bool GoogleChromeDistribution::HasUserExperiments() {
279 return true; 279 return true;
280 } 280 }
281
282 int GoogleChromeDistribution::GetAppListIconIndex() {
283 return 5;
284 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698