| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "ui/snapshot/snapshot.h" | 5 #include "ui/snapshot/snapshot.h" |
| 6 | 6 |
| 7 #include <gdk/gdkx.h> | 7 #include <gdk/gdkx.h> |
| 8 #include <gtk/gtk.h> | 8 #include <gtk/gtk.h> |
| 9 | 9 |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 return true; | 75 return true; |
| 76 } | 76 } |
| 77 | 77 |
| 78 bool GrabWindowSnapshot(gfx::NativeWindow window_handle, | 78 bool GrabWindowSnapshot(gfx::NativeWindow window_handle, |
| 79 std::vector<unsigned char>* png_representation, | 79 std::vector<unsigned char>* png_representation, |
| 80 const gfx::Rect& snapshot_bounds) { | 80 const gfx::Rect& snapshot_bounds) { |
| 81 return GrabViewSnapshot(GTK_WIDGET(window_handle), png_representation, | 81 return GrabViewSnapshot(GTK_WIDGET(window_handle), png_representation, |
| 82 snapshot_bounds); | 82 snapshot_bounds); |
| 83 } | 83 } |
| 84 | 84 |
| 85 SNAPSHOT_EXPORT void GrapWindowSnapshotAsync( |
| 86 gfx::NativeWindow window, |
| 87 const gfx::Rect& snapshot_bounds, |
| 88 const gfx::Size& target_size, |
| 89 scoped_refptr<base::TaskRunner> background_task_runner, |
| 90 GrapWindowSnapshotAsyncCallback callback) { |
| 91 NOTIMPLEMENTED(); |
| 92 } |
| 93 |
| 85 } // namespace ui | 94 } // namespace ui |
| OLD | NEW |