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 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_H__ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_H__ |
6 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_H__ | 6 #define CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_H__ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 // The format (JPEG vs PNG) of the resulting image. Set in RunImpl(). | 199 // The format (JPEG vs PNG) of the resulting image. Set in RunImpl(). |
200 ImageFormat image_format_; | 200 ImageFormat image_format_; |
201 | 201 |
202 // Quality setting to use when encoding jpegs. Set in RunImpl(). | 202 // Quality setting to use when encoding jpegs. Set in RunImpl(). |
203 int image_quality_; | 203 int image_quality_; |
204 | 204 |
205 DECLARE_EXTENSION_FUNCTION_NAME("tabs.captureVisibleTab") | 205 DECLARE_EXTENSION_FUNCTION_NAME("tabs.captureVisibleTab") |
206 }; | 206 }; |
207 | 207 |
208 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_H__ | 208 #endif // CHROME_BROWSER_EXTENSIONS_API_TABS_TABS_H__ |
OLD | NEW |