// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef EXTENSIONS_BROWSER_API_WEB_CONTENTS_CAPTURE_CLIENT_H_ #define EXTENSIONS_BROWSER_API_WEB_CONTENTS_CAPTURE_CLIENT_H_ #include "extensions/browser/extension_function.h" #include "extensions/common/api/extension_types.h" class SkBitmap; namespace content { class WebContents; } namespace extensions { // Base class for capturing visible area of a WebContents. // This is used by both webview.captureVisibleRegion and tabs.captureVisibleTab. class WebContentsCaptureClient { … }; } // namespace extensions #endif // EXTENSIONS_BROWSER_API_WEB_CONTENTS_CAPTURE_CLIENT_H_