| Index: ui/gfx/ozone/impl/file_surface_factory.h
|
| diff --git a/ui/gfx/ozone/impl/file_surface_factory_ozone.h b/ui/gfx/ozone/impl/file_surface_factory.h
|
| similarity index 77%
|
| rename from ui/gfx/ozone/impl/file_surface_factory_ozone.h
|
| rename to ui/gfx/ozone/impl/file_surface_factory.h
|
| index 6b1df26409d4d2d743af21d28738ef84afcbcf37..5daa4c552d21bf893158cf3cdffeadc0e3b3a34b 100644
|
| --- a/ui/gfx/ozone/impl/file_surface_factory_ozone.h
|
| +++ b/ui/gfx/ozone/impl/file_surface_factory.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_OZONE_IMPL_FILE_SURFACE_FACTORY_OZONE_H_
|
| -#define UI_GFX_OZONE_IMPL_FILE_SURFACE_FACTORY_OZONE_H_
|
| +#ifndef UI_GFX_OZONE_IMPL_FILE_SURFACE_FACTORY_H_
|
| +#define UI_GFX_OZONE_IMPL_FILE_SURFACE_FACTORY_H_
|
|
|
| #include "base/files/file_path.h"
|
| #include "base/memory/scoped_ptr.h"
|
| @@ -16,10 +16,10 @@ class SkCanvas;
|
|
|
| namespace gfx {
|
|
|
| -class FileSurfaceFactoryOzone : public SurfaceFactoryOzone {
|
| +class FileSurfaceFactory : public SurfaceFactoryOzone {
|
| public:
|
| - explicit FileSurfaceFactoryOzone(const base::FilePath& dump_location);
|
| - virtual ~FileSurfaceFactoryOzone();
|
| + explicit FileSurfaceFactory(const base::FilePath& dump_location);
|
| + virtual ~FileSurfaceFactory();
|
|
|
| private:
|
| // SurfaceFactoryOzone:
|
| @@ -41,9 +41,9 @@ class FileSurfaceFactoryOzone : public SurfaceFactoryOzone {
|
| skia::RefPtr<SkBitmapDevice> device_;
|
| skia::RefPtr<SkCanvas> canvas_;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(FileSurfaceFactoryOzone);
|
| + DISALLOW_COPY_AND_ASSIGN(FileSurfaceFactory);
|
| };
|
|
|
| } // namespace gfx
|
|
|
| -#endif // UI_GFX_OZONE_IMPL_FILE_SURFACE_FACTORY_OZONE_H_
|
| +#endif // UI_GFX_OZONE_IMPL_FILE_SURFACE_FACTORY_H_
|
|
|