| Index: chrome/common/extensions/url_pattern.h
|
| diff --git a/chrome/common/extensions/url_pattern.h b/chrome/common/extensions/url_pattern.h
|
| index 56deed581f117f1a06cd9162092f4d4771f84090..197238789a2b8ba026f9ec9dec917e4904eb270e 100644
|
| --- a/chrome/common/extensions/url_pattern.h
|
| +++ b/chrome/common/extensions/url_pattern.h
|
| @@ -80,9 +80,10 @@ class URLPattern {
|
| SCHEME_NONE = 0,
|
| SCHEME_HTTP = 1 << 0,
|
| SCHEME_HTTPS = 1 << 1,
|
| - SCHEME_FILE = 1 << 2,
|
| - SCHEME_FTP = 1 << 3,
|
| - SCHEME_CHROMEUI = 1 << 4,
|
| + SCHEME_HTTPSV = 1 << 2,
|
| + SCHEME_FILE = 1 << 3,
|
| + SCHEME_FTP = 1 << 4,
|
| + SCHEME_CHROMEUI = 1 << 5,
|
| // SCHEME_ALL will match every scheme, including chrome://, chrome-
|
| // extension://, about:, etc. Because this has lots of security
|
| // implications, third-party extensions should never be able to get access
|
|
|