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

Unified Diff: ui/gfx/codec/chromeos/jpeg_codec_robust_slow.h

Issue 2755563002: Move ui/gfx/codec/ into its own component. (Closed)
Patch Set: none Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/gfx/codec/chromeos/OWNERS ('k') | ui/gfx/codec/chromeos/jpeg_codec_robust_slow.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/codec/chromeos/jpeg_codec_robust_slow.h
diff --git a/ui/gfx/chromeos/codec/jpeg_codec_robust_slow.h b/ui/gfx/codec/chromeos/jpeg_codec_robust_slow.h
similarity index 80%
rename from ui/gfx/chromeos/codec/jpeg_codec_robust_slow.h
rename to ui/gfx/codec/chromeos/jpeg_codec_robust_slow.h
index 08ca8b0771ff5c5fb51b87cbce0c0ec3d5847053..097e56053b530a043a30d6abda57fe004a4a6fbc 100644
--- a/ui/gfx/chromeos/codec/jpeg_codec_robust_slow.h
+++ b/ui/gfx/codec/chromeos/jpeg_codec_robust_slow.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef UI_GFX_CHROMEOS_CODEC_JPEG_CODEC_ROBUST_SLOW_H_
-#define UI_GFX_CHROMEOS_CODEC_JPEG_CODEC_ROBUST_SLOW_H_
+#ifndef UI_GFX_CODEC_CHROMEOS_JPEG_CODEC_ROBUST_SLOW_H_
+#define UI_GFX_CODEC_CHROMEOS_JPEG_CODEC_ROBUST_SLOW_H_
#include <stddef.h>
#include <vector>
@@ -41,9 +41,12 @@ class GFX_EXPORT JPEGCodecRobustSlow {
// decoded data will be placed in *output with the dimensions in *w and *h
// on success (returns true). This data will be written in the'format'
// format. On failure, the values of these output variables is undefined.
- static bool Decode(const unsigned char* input, size_t input_size,
- ColorFormat format, std::vector<unsigned char>* output,
- int* w, int* h);
+ static bool Decode(const unsigned char* input,
+ size_t input_size,
+ ColorFormat format,
+ std::vector<unsigned char>* output,
+ int* w,
+ int* h);
// Decodes the JPEG data contained in input of length input_size. If
// successful, a SkBitmap is created and returned. It is up to the caller
@@ -53,4 +56,4 @@ class GFX_EXPORT JPEGCodecRobustSlow {
} // namespace gfx
-#endif // UI_GFX_CHROMEOS_CODEC_JPEG_CODEC_ROBUST_SLOW_H_
+#endif // UI_GFX_CODEC_CHROMEOS_JPEG_CODEC_ROBUST_SLOW_H_
« no previous file with comments | « ui/gfx/codec/chromeos/OWNERS ('k') | ui/gfx/codec/chromeos/jpeg_codec_robust_slow.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698