| Index: third_party/WebKit/Source/platform/weborigin/URLSecurityOriginMap.h
|
| diff --git a/third_party/WebKit/Source/platform/weborigin/SecurityOriginCache.h b/third_party/WebKit/Source/platform/weborigin/URLSecurityOriginMap.h
|
| similarity index 83%
|
| rename from third_party/WebKit/Source/platform/weborigin/SecurityOriginCache.h
|
| rename to third_party/WebKit/Source/platform/weborigin/URLSecurityOriginMap.h
|
| index 9be88041c0614bf2f960d28e357b99599b116617..09f2fad1dcfe037e3f91ce277bec8dbfa0aa67b4 100644
|
| --- a/third_party/WebKit/Source/platform/weborigin/SecurityOriginCache.h
|
| +++ b/third_party/WebKit/Source/platform/weborigin/URLSecurityOriginMap.h
|
| @@ -28,8 +28,8 @@
|
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
| */
|
|
|
| -#ifndef SecurityOriginCache_h
|
| -#define SecurityOriginCache_h
|
| +#ifndef URLSecurityOriginMap_h
|
| +#define URLSecurityOriginMap_h
|
|
|
| #include "wtf/Allocator.h"
|
| #include "wtf/Noncopyable.h"
|
| @@ -39,15 +39,15 @@ namespace blink {
|
| class KURL;
|
| class SecurityOrigin;
|
|
|
| -class SecurityOriginCache {
|
| - USING_FAST_MALLOC(SecurityOriginCache);
|
| - WTF_MAKE_NONCOPYABLE(SecurityOriginCache);
|
| +class URLSecurityOriginMap {
|
| + USING_FAST_MALLOC(URLSecurityOriginMap);
|
| + WTF_MAKE_NONCOPYABLE(URLSecurityOriginMap);
|
| public:
|
| - SecurityOriginCache() { }
|
| - virtual ~SecurityOriginCache() { }
|
| - virtual SecurityOrigin* cachedOrigin(const KURL&) = 0;
|
| + URLSecurityOriginMap() { }
|
| + virtual ~URLSecurityOriginMap() { }
|
| + virtual SecurityOrigin* getOrigin(const KURL&) = 0;
|
| };
|
|
|
| } // namespace blink
|
|
|
| -#endif // SecurityOriginCache_h
|
| +#endif // URLSecurityOriginMap_h
|
|
|