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

Side by Side Diff: content/renderer/renderer_blink_platform_impl.h

Issue 1796293003: Image decode color: Push color profile from browser to renderer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 7 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 6 #define CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
7 7
8 #include <stddef.h> 8 #include <stddef.h>
9 #include <stdint.h> 9 #include <stdint.h>
10 10
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 const blink::WebSecurityOrigin& origin) override; 116 const blink::WebSecurityOrigin& origin) override;
117 117
118 blink::WebString signedPublicKeyAndChallengeString( 118 blink::WebString signedPublicKeyAndChallengeString(
119 unsigned key_size_index, 119 unsigned key_size_index,
120 const blink::WebString& challenge, 120 const blink::WebString& challenge,
121 const blink::WebURL& url, 121 const blink::WebURL& url,
122 const blink::WebURL& top_origin) override; 122 const blink::WebURL& top_origin) override;
123 void getPluginList(bool refresh, 123 void getPluginList(bool refresh,
124 blink::WebPluginListBuilder* builder) override; 124 blink::WebPluginListBuilder* builder) override;
125 blink::WebPublicSuffixList* publicSuffixList() override; 125 blink::WebPublicSuffixList* publicSuffixList() override;
126 void screenColorProfile(blink::WebVector<char>* to_profile) override;
127 blink::WebScrollbarBehavior* scrollbarBehavior() override; 126 blink::WebScrollbarBehavior* scrollbarBehavior() override;
128 blink::WebIDBFactory* idbFactory() override; 127 blink::WebIDBFactory* idbFactory() override;
129 blink::WebServiceWorkerCacheStorage* cacheStorage( 128 blink::WebServiceWorkerCacheStorage* cacheStorage(
130 const blink::WebSecurityOrigin& security_origin) override; 129 const blink::WebSecurityOrigin& security_origin) override;
131 blink::WebFileSystem* fileSystem() override; 130 blink::WebFileSystem* fileSystem() override;
132 blink::WebString fileSystemCreateOriginIdentifier( 131 blink::WebString fileSystemCreateOriginIdentifier(
133 const blink::WebSecurityOrigin& origin) override; 132 const blink::WebSecurityOrigin& origin) override;
134 133
135 bool canAccelerate2dCanvas() override; 134 bool canAccelerate2dCanvas() override;
136 bool isThreadedCompositingEnabled() override; 135 bool isThreadedCompositingEnabled() override;
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 303 std::unique_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
305 304
306 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_; 305 std::unique_ptr<BlinkServiceRegistryImpl> blink_service_registry_;
307 306
308 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 307 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
309 }; 308 };
310 309
311 } // namespace content 310 } // namespace content
312 311
313 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 312 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698