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 "base/callback.h" | 7 #include "base/callback.h" |
8 #include "ui/gfx/rect.h" | 8 #include "ui/gfx/rect.h" |
9 | 9 |
10 namespace ui { | 10 namespace ui { |
(...skipping 18 matching lines...) Expand all Loading... |
29 const gfx::Size& target_size, | 29 const gfx::Size& target_size, |
30 scoped_refptr<base::TaskRunner> background_task_runner, | 30 scoped_refptr<base::TaskRunner> background_task_runner, |
31 GrabWindowSnapshotAsyncCallback callback) { | 31 GrabWindowSnapshotAsyncCallback callback) { |
32 NOTIMPLEMENTED(); | 32 NOTIMPLEMENTED(); |
33 } | 33 } |
34 | 34 |
35 void GrabWindowSnapshotAsync( | 35 void GrabWindowSnapshotAsync( |
36 gfx::NativeWindow window, | 36 gfx::NativeWindow window, |
37 const gfx::Rect& source_rect, | 37 const gfx::Rect& source_rect, |
38 scoped_refptr<base::TaskRunner> background_task_runner, | 38 scoped_refptr<base::TaskRunner> background_task_runner, |
39 const GrabWindowSnapshotAsyncCallback& callback) { | 39 const GrabWindowSnapshotAsyncPNGCallback& callback) { |
40 NOTIMPLEMENTED(); | 40 NOTIMPLEMENTED(); |
41 } | 41 } |
42 | 42 |
43 } // namespace ui | 43 } // namespace ui |
OLD | NEW |