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

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

Issue 10103020: Only do DelegateExecute verb handler registration for Google Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ToT Created 8 years, 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 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 implementation of GoogleChromeSxSDistribution. 5 // This file defines implementation of GoogleChromeSxSDistribution.
6 6
7 #include "chrome/installer/util/google_chrome_sxs_distribution.h" 7 #include "chrome/installer/util/google_chrome_sxs_distribution.h"
8 8
9 #include "base/command_line.h" 9 #include "base/command_line.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 11
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 55
56 int GoogleChromeSxSDistribution::GetIconIndex() { 56 int GoogleChromeSxSDistribution::GetIconIndex() {
57 return kSxSIconIndex; 57 return kSxSIconIndex;
58 } 58 }
59 59
60 bool GoogleChromeSxSDistribution::GetChromeChannel(std::wstring* channel) { 60 bool GoogleChromeSxSDistribution::GetChromeChannel(std::wstring* channel) {
61 *channel = kChannelName; 61 *channel = kChannelName;
62 return true; 62 return true;
63 } 63 }
64 64
65 bool GoogleChromeSxSDistribution::GetDelegateExecuteHandlerData(
66 string16* handler_class_uuid,
67 string16* type_lib_uuid,
68 string16* type_lib_version,
69 string16* interface_uuid) {
70 return false;
71 }
72
65 std::wstring GoogleChromeSxSDistribution::ChannelName() { 73 std::wstring GoogleChromeSxSDistribution::ChannelName() {
66 return kChannelName; 74 return kChannelName;
67 } 75 }
OLDNEW
« no previous file with comments | « chrome/installer/util/google_chrome_sxs_distribution.h ('k') | chrome/installer/util/util_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698