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

Side by Side Diff: impl/memory/mail_static_lists.go

Issue 2192003003: GAE CL for luci-go common refactor (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/gae@master
Patch Set: Created 4 years, 4 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
« no previous file with comments | « impl/memory/gkvlite_iter_test.go ('k') | impl/memory/taskqueue.go » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The LUCI Authors. All rights reserved. 1 // Copyright 2015 The LUCI Authors. All rights reserved.
2 // Use of this source code is governed under the Apache License, Version 2.0 2 // Use of this source code is governed under the Apache License, Version 2.0
3 // that can be found in the LICENSE file. 3 // that can be found in the LICENSE file.
4 4
5 package memory 5 package memory
6 6
7 import ( 7 import (
8 » "github.com/luci/luci-go/common/stringset" 8 » "github.com/luci/luci-go/common/data/stringset"
9 ) 9 )
10 10
11 // all of these constants were imported on Mon Dec 14 18:18:00 PST 2015 from 11 // all of these constants were imported on Mon Dec 14 18:18:00 PST 2015 from
12 // https://cloud.google.com/appengine/docs/go/mail/ 12 // https://cloud.google.com/appengine/docs/go/mail/
13 13
14 var okHeaders = stringset.NewFromSlice( 14 var okHeaders = stringset.NewFromSlice(
15 "In-Reply-To", 15 "In-Reply-To",
16 "List-Id", 16 "List-Id",
17 "List-Unsubscribe", 17 "List-Unsubscribe",
18 "On-Behalf-Of", 18 "On-Behalf-Of",
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 "tif": "image/tiff", 150 "tif": "image/tiff",
151 "tiff": "image/tiff", 151 "tiff": "image/tiff",
152 "txt": "text/plain", 152 "txt": "text/plain",
153 "vcf": "text/x-vcard", 153 "vcf": "text/x-vcard",
154 "wav": "audio/x-wav", 154 "wav": "audio/x-wav",
155 "wbmp": "image/vnd.wap.wbmp", 155 "wbmp": "image/vnd.wap.wbmp",
156 "xls": "application/vnd.ms-excel", 156 "xls": "application/vnd.ms-excel",
157 "xlsx": "application/vnd.ms-excel", 157 "xlsx": "application/vnd.ms-excel",
158 "zip": "application/zip", 158 "zip": "application/zip",
159 } 159 }
OLDNEW
« no previous file with comments | « impl/memory/gkvlite_iter_test.go ('k') | impl/memory/taskqueue.go » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698