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

Unified Diff: chrome/common/extensions/docs/server2/test_branch_utility.py

Issue 15009006: Docserver: refactor Servlet, ObjectStore, and ServerInstance architecture to (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix example zipper 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698