| Index: client/deps/realtimecomm_playground/pgutil.py
|
| diff --git a/client/deps/realtimecomm_playground/pgutil.py b/client/deps/realtimecomm_playground/pgutil.py
|
| index 0d85877a08a4ec499f7f4de08dc468b8cbc64b95..a0ea5a408bb85f0cb7722de965ac45684a5fe3f4 100644
|
| --- a/client/deps/realtimecomm_playground/pgutil.py
|
| +++ b/client/deps/realtimecomm_playground/pgutil.py
|
| @@ -66,8 +66,8 @@ def setup_playground(src, dst, optionfile):
|
| shutil.copytree(src, dst)
|
| utils.run('chown chronos %s -R' % dst)
|
|
|
| - dst_path= '/home/chronos/.Google/'
|
| - opt_path= os.path.join(dst_path, 'Google Talk Plugin')
|
| + dst_path= '/home/chronos/.config/'
|
| + opt_path= os.path.join(dst_path, 'google-googletalkplugin')
|
| dst_opt = os.path.join(opt_path, 'options')
|
| utils.run('mkdir -p \'%s\'' % opt_path)
|
| utils.run('cp -f %s \'%s\'' % (optionfile, dst_opt))
|
| @@ -94,3 +94,7 @@ def cleanup_playground(playground, testdone=False):
|
| shutil.rmtree('/home/chronos/.config/chromium', ignore_errors=True)
|
| shutil.rmtree('/home/chronos/.config/google-chrome', ignore_errors=True)
|
|
|
| + # Delete previous GTalk state if any
|
| + shutil.rmtree('/home/chronos/.config/google-googletalkplugin',
|
| + ignore_errors=True)
|
| +
|
|
|