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 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
8 | 8 |
9 #include "base/callback.h" | 9 #include "base/callback.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 const gfx::Size& target_size, | 79 const gfx::Size& target_size, |
80 scoped_refptr<base::TaskRunner> background_task_runner, | 80 scoped_refptr<base::TaskRunner> background_task_runner, |
81 GrabWindowSnapshotAsyncCallback callback) { | 81 GrabWindowSnapshotAsyncCallback callback) { |
82 NOTIMPLEMENTED(); | 82 NOTIMPLEMENTED(); |
83 } | 83 } |
84 | 84 |
85 void GrabWindowSnapshotAsync( | 85 void GrabWindowSnapshotAsync( |
86 gfx::NativeWindow window, | 86 gfx::NativeWindow window, |
87 const gfx::Rect& source_rect, | 87 const gfx::Rect& source_rect, |
88 scoped_refptr<base::TaskRunner> background_task_runner, | 88 scoped_refptr<base::TaskRunner> background_task_runner, |
89 const GrabWindowSnapshotAsyncCallback& callback) { | 89 const GrabWindowSnapshotAsyncPNGCallback& callback) { |
90 NOTIMPLEMENTED(); | 90 NOTIMPLEMENTED(); |
91 } | 91 } |
92 | 92 |
93 } // namespace ui | 93 } // namespace ui |
OLD | NEW |