1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25

content / common / android / sync_compositor_statics.cc [blame]

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/common/android/sync_compositor_statics.h"

#include "base/command_line.h"
#include "content/public/common/content_switches.h"

namespace content {

static SkCanvas* g_canvas = nullptr;

void SynchronousCompositorSetSkCanvas(SkCanvas* canvas) {
  DCHECK(base::CommandLine::ForCurrentProcess()->HasSwitch(
      switches::kSingleProcess));
  DCHECK_NE(!!canvas, !!g_canvas);
  g_canvas = canvas;
}

SkCanvas* SynchronousCompositorGetSkCanvas() {
  return g_canvas;
}

}  // namespace content