Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright (c) 2012 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 #ifndef CONTENT_COMMON_SAVABLE_URL_SCHEMES_H_ | |
| 6 #define CONTENT_COMMON_SAVABLE_URL_SCHEMES_H_ | |
| 7 #pragma once | |
| 8 | |
| 9 namespace content { | |
| 10 | |
| 11 namespace internal { | |
|
jam
2012/05/24 19:49:26
nit: we don't use internal namespace in content
i
jam
2012/05/24 19:57:15
just to be clear to save you any more round trips,
grt (UTC plus 2)
2012/05/24 20:33:14
That doesn't work since it brings back the origina
jam
2012/05/24 21:50:02
got it
grt (UTC plus 2)
2012/05/25 03:15:04
Apologies if I'm missing something obvious, but th
jam
2012/05/25 08:12:04
ah, I was missing that there were two functions wi
| |
| 12 | |
| 13 // Null terminated list of schemes that are savable. This function can be | |
| 14 // invoked on any thread. | |
| 15 const char* const* GetSavableSchemes(); | |
| 16 | |
| 17 // Intended for use only during initialization. | |
| 18 void SetSavableSchemes(const char* const* savable_schemes); | |
| 19 | |
| 20 } // namespace internal | |
| 21 | |
| 22 } // namespace content | |
| 23 | |
| 24 #endif // CONTENT_COMMON_SAVABLE_URL_SCHEMES_H_ | |
| OLD | NEW |