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/base/android/view_android.h" | 8 #include "ui/base/android/view_android.h" |
9 #include "ui/base/android/window_android.h" | 9 #include "ui/base/android/window_android.h" |
10 #include "ui/gfx/display.h" | 10 #include "ui/gfx/display.h" |
(...skipping 28 matching lines...) Expand all Loading... |
39 const gfx::Size& target_size, | 39 const gfx::Size& target_size, |
40 scoped_refptr<base::TaskRunner> background_task_runner, | 40 scoped_refptr<base::TaskRunner> background_task_runner, |
41 GrabWindowSnapshotAsyncCallback callback) { | 41 GrabWindowSnapshotAsyncCallback callback) { |
42 NOTIMPLEMENTED(); | 42 NOTIMPLEMENTED(); |
43 } | 43 } |
44 | 44 |
45 void GrabWindowSnapshotAsync( | 45 void GrabWindowSnapshotAsync( |
46 gfx::NativeWindow window, | 46 gfx::NativeWindow window, |
47 const gfx::Rect& source_rect, | 47 const gfx::Rect& source_rect, |
48 scoped_refptr<base::TaskRunner> background_task_runner, | 48 scoped_refptr<base::TaskRunner> background_task_runner, |
49 const GrabWindowSnapshotAsyncCallback& callback) { | 49 const GrabWindowSnapshotAsyncPNGCallback& callback) { |
50 NOTIMPLEMENTED(); | 50 NOTIMPLEMENTED(); |
51 } | 51 } |
52 | 52 |
53 } // namespace ui | 53 } // namespace ui |
OLD | NEW |