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

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: Fix windows tests Created 4 years, 9 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 bool databaseSetFileSize(const blink::WebString& vfs_file_name, 110 bool databaseSetFileSize(const blink::WebString& vfs_file_name,
111 long long size) override; 111 long long size) override;
112 blink::WebString signedPublicKeyAndChallengeString( 112 blink::WebString signedPublicKeyAndChallengeString(
113 unsigned key_size_index, 113 unsigned key_size_index,
114 const blink::WebString& challenge, 114 const blink::WebString& challenge,
115 const blink::WebURL& url, 115 const blink::WebURL& url,
116 const blink::WebURL& top_origin) override; 116 const blink::WebURL& top_origin) override;
117 void getPluginList(bool refresh, 117 void getPluginList(bool refresh,
118 blink::WebPluginListBuilder* builder) override; 118 blink::WebPluginListBuilder* builder) override;
119 blink::WebPublicSuffixList* publicSuffixList() override; 119 blink::WebPublicSuffixList* publicSuffixList() override;
120 void screenColorProfile(blink::WebVector<char>* to_profile) override;
121 blink::WebScrollbarBehavior* scrollbarBehavior() override; 120 blink::WebScrollbarBehavior* scrollbarBehavior() override;
122 blink::WebIDBFactory* idbFactory() override; 121 blink::WebIDBFactory* idbFactory() override;
123 blink::WebServiceWorkerCacheStorage* cacheStorage( 122 blink::WebServiceWorkerCacheStorage* cacheStorage(
124 const blink::WebSecurityOrigin& security_origin) override; 123 const blink::WebSecurityOrigin& security_origin) override;
125 blink::WebFileSystem* fileSystem() override; 124 blink::WebFileSystem* fileSystem() override;
126 bool canAccelerate2dCanvas() override; 125 bool canAccelerate2dCanvas() override;
127 bool isThreadedCompositingEnabled() override; 126 bool isThreadedCompositingEnabled() override;
128 bool isThreadedAnimationEnabled() override; 127 bool isThreadedAnimationEnabled() override;
129 double audioHardwareSampleRate() override; 128 double audioHardwareSampleRate() override;
130 size_t audioHardwareBufferSize() override; 129 size_t audioHardwareBufferSize() override;
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 WebTrialTokenValidatorImpl trial_token_validator_; 296 WebTrialTokenValidatorImpl trial_token_validator_;
298 297
299 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_; 298 scoped_ptr<LocalStorageCachedAreas> local_storage_cached_areas_;
300 299
301 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl); 300 DISALLOW_COPY_AND_ASSIGN(RendererBlinkPlatformImpl);
302 }; 301 };
303 302
304 } // namespace content 303 } // namespace content
305 304
306 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_ 305 #endif // CONTENT_RENDERER_RENDERER_BLINK_PLATFORM_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698