| Index: skia/ext/convolver.h
|
| diff --git a/skia/ext/convolver.h b/skia/ext/convolver.h
|
| index 97f191cc38ac098f16ddf8ac41ae45ca09bff7fe..80c48a9c735a9959a6e197cb8a60fd5ddeda0727 100644
|
| --- a/skia/ext/convolver.h
|
| +++ b/skia/ext/convolver.h
|
| @@ -1,4 +1,4 @@
|
| -// Copyright (c) 2009 The Chromium Authors. All rights reserved.
|
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| @@ -25,11 +25,11 @@ namespace skia {
|
| // Entries are stored in fixed point, shifted left by kShiftBits.
|
| class ConvolutionFilter1D {
|
| public:
|
| + typedef short Fixed;
|
| +
|
| // The number of bits that fixed point values are shifted by.
|
| enum { kShiftBits = 14 };
|
|
|
| - typedef short Fixed;
|
| -
|
| ConvolutionFilter1D();
|
| ~ConvolutionFilter1D();
|
|
|
|
|