summaryrefslogtreecommitdiffstats
path: root/chrome/browser/views/tabs/native_view_photobooth_gtk.cc
blob: a307112f82fffee810d38f80fad00738f058856d (plain)
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
26
27
28
29
30
31
32
33
34
// Copyright (c) 2009 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.

#include "chrome/browser/views/tabs/native_view_photobooth_gtk.h"

#include "base/logging.h"
#include "gfx/canvas.h"

///////////////////////////////////////////////////////////////////////////////
// NativeViewPhotoboothGtk, public:

// static
NativeViewPhotobooth* NativeViewPhotobooth::Create(
    gfx::NativeView initial_view) {
  return new NativeViewPhotoboothGtk(initial_view);
}

NativeViewPhotoboothGtk::NativeViewPhotoboothGtk(
    gfx::NativeView initial_view) {
}

NativeViewPhotoboothGtk::~NativeViewPhotoboothGtk() {
}

void NativeViewPhotoboothGtk::Replace(gfx::NativeView new_view) {
  NOTIMPLEMENTED();
}

void NativeViewPhotoboothGtk::PaintScreenshotIntoCanvas(
    gfx::Canvas* canvas,
    const gfx::Rect& target_bounds) {
  NOTIMPLEMENTED();
}