 Chromium Code Reviews
 Chromium Code Reviews Issue 1189523015:
  Add use-counters for Client-Hints features  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1189523015:
  Add use-counters for Client-Hints features  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| OLD | NEW | 
|---|---|
| 1 /* | 1 /* | 
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 
| 3 * | 3 * | 
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without | 
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are | 
| 6 * met: | 6 * met: | 
| 7 * | 7 * | 
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright | 
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. | 
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above | 
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 enum FetchResourceType { | 52 enum FetchResourceType { | 
| 53 FetchMainResource, | 53 FetchMainResource, | 
| 54 FetchSubresource | 54 FetchSubresource | 
| 55 }; | 55 }; | 
| 56 | 56 | 
| 57 class CORE_EXPORT FetchContext : public NoBaseWillBeGarbageCollectedFinalized<Fe tchContext> { | 57 class CORE_EXPORT FetchContext : public NoBaseWillBeGarbageCollectedFinalized<Fe tchContext> { | 
| 58 WTF_MAKE_NONCOPYABLE(FetchContext); | 58 WTF_MAKE_NONCOPYABLE(FetchContext); | 
| 59 public: | 59 public: | 
| 60 static FetchContext& nullInstance(); | 60 static FetchContext& nullInstance(); | 
| 61 | 61 | 
| 62 // To avoid a dependency on core/ we redefine fetch based UseCounter feature s here. | |
| 63 enum FetchUseCounterFeature { | |
| 
Nate Chapin
2015/06/16 17:10:28
It seems unfortunate to have this enum essentially
 | |
| 64 ClientHintsDPR, | |
| 65 ClientHintsResourceWidth, | |
| 66 ClientHintsViewportWidth | |
| 67 }; | |
| 68 | |
| 62 virtual ~FetchContext() { } | 69 virtual ~FetchContext() { } | 
| 63 DEFINE_INLINE_VIRTUAL_TRACE() { } | 70 DEFINE_INLINE_VIRTUAL_TRACE() { } | 
| 64 | 71 | 
| 65 virtual bool isLiveContext() { return false; } | 72 virtual bool isLiveContext() { return false; } | 
| 73 virtual void count(FetchUseCounterFeature) { } | |
| 66 | 74 | 
| 67 virtual void addAdditionalRequestHeaders(ResourceRequest&, FetchResourceType ); | 75 virtual void addAdditionalRequestHeaders(ResourceRequest&, FetchResourceType ); | 
| 68 virtual void setFirstPartyForCookies(ResourceRequest&); | 76 virtual void setFirstPartyForCookies(ResourceRequest&); | 
| 69 virtual CachePolicy cachePolicy() const; | 77 virtual CachePolicy cachePolicy() const; | 
| 70 virtual ResourceRequestCachePolicy resourceRequestCachePolicy(const Resource Request&, Resource::Type) const; | 78 virtual ResourceRequestCachePolicy resourceRequestCachePolicy(const Resource Request&, Resource::Type) const; | 
| 71 | 79 | 
| 72 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res ourceLoadPriority, int intraPriorityValue); | 80 virtual void dispatchDidChangeResourcePriority(unsigned long identifier, Res ourceLoadPriority, int intraPriorityValue); | 
| 73 virtual void dispatchWillSendRequest(unsigned long identifier, ResourceReque st&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo& = Fetch InitiatorInfo()); | 81 virtual void dispatchWillSendRequest(unsigned long identifier, ResourceReque st&, const ResourceResponse& redirectResponse, const FetchInitiatorInfo& = Fetch InitiatorInfo()); | 
| 74 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const ResourceResponse&); | 82 virtual void dispatchDidLoadResourceFromMemoryCache(const ResourceRequest&, const ResourceResponse&); | 
| 75 virtual void dispatchDidReceiveResponse(unsigned long identifier, const Reso urceResponse&, ResourceLoader* = 0); | 83 virtual void dispatchDidReceiveResponse(unsigned long identifier, const Reso urceResponse&, ResourceLoader* = 0); | 
| (...skipping 28 matching lines...) Expand all Loading... | |
| 104 virtual void addClientHintsIfNecessary(FetchRequest&); | 112 virtual void addClientHintsIfNecessary(FetchRequest&); | 
| 105 virtual void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&); | 113 virtual void addCSPHeaderIfNecessary(Resource::Type, FetchRequest&); | 
| 106 | 114 | 
| 107 protected: | 115 protected: | 
| 108 FetchContext() { } | 116 FetchContext() { } | 
| 109 }; | 117 }; | 
| 110 | 118 | 
| 111 } | 119 } | 
| 112 | 120 | 
| 113 #endif | 121 #endif | 
| OLD | NEW |