Chromium Code Reviews| Index: chrome/common/extensions/docs/server2/test_branch_utility.py |
| diff --git a/remoting/host/installer/linux/debian/postrm b/chrome/common/extensions/docs/server2/test_branch_utility.py |
| old mode 100755 |
| new mode 100644 |
| similarity index 53% |
| copy from remoting/host/installer/linux/debian/postrm |
| copy to chrome/common/extensions/docs/server2/test_branch_utility.py |
| index dd93c84835be413bbd9241f49c8409b5c7ffab07..7af7fa0b108996d00cd05748ce088d6b4327df76 |
| --- a/remoting/host/installer/linux/debian/postrm |
| +++ b/chrome/common/extensions/docs/server2/test_branch_utility.py |
| @@ -1,13 +1,9 @@ |
| -#!/bin/bash |
|
cduvall
2013/05/08 03:09:14
good job git
not at google - send to devlin
2013/05/08 18:26:19
Reckon. I'll add a class comment to try to trick i
|
| - |
| # Copyright 2013 The Chromium Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| -set -e |
| - |
| -if [ "$1" = "purge" ]; then |
| - delgroup --quiet chrome-remote-desktop > /dev/null || true |
| -fi |
| +from branch_utility import BranchUtility |
| -#DEBHELPER# |
| +class TestBranchUtility(object): |
| + def GetBranchForChannel(self, channel_name): |
| + return channel_name |