1# Copyright 2016 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 6class RemotePlatformOptions(object): 7 """Options to be used for creating a remote platform instance.""" 8 9 10class AndroidPlatformOptions(RemotePlatformOptions): 11 """Android-specific remote platform options.""" 12 13 def __init__(self, device=None, android_blacklist_file=None): 14 super(AndroidPlatformOptions, self).__init__() 15 16 self.device = device 17 self.android_blacklist_file = android_blacklist_file 18