image_android.cc 364 B

12345678910111213141516
  1. // Copyright 2013 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #include "printing/image.h"
  5. #include "base/notreached.h"
  6. namespace printing {
  7. bool Image::LoadMetafile(const Metafile& metafile) {
  8. NOTIMPLEMENTED();
  9. return false;
  10. }
  11. } // namespace printing