| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_WEB_VIEW_WEB_VIEW_INTERNAL_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_WEB_VIEW_WEB_VIEW_INTERNAL_API_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_API_WEB_VIEW_WEB_VIEW_INTERNAL_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_WEB_VIEW_WEB_VIEW_INTERNAL_API_H_ |
| 7 | 7 |
| 8 #include "chrome/browser/extensions/api/capture_web_contents_function.h" | |
| 9 #include "chrome/browser/extensions/api/execute_code_function.h" | 8 #include "chrome/browser/extensions/api/execute_code_function.h" |
| 10 #include "chrome/browser/guest_view/web_view/web_view_find_helper.h" | 9 #include "chrome/browser/guest_view/web_view/web_view_find_helper.h" |
| 10 #include "extensions/browser/api/capture_web_contents_function.h" |
| 11 #include "extensions/browser/extension_function.h" |
| 11 #include "extensions/browser/guest_view/web_view/web_view_guest.h" | 12 #include "extensions/browser/guest_view/web_view/web_view_guest.h" |
| 12 | 13 |
| 13 // WARNING: WebViewInternal could be loaded in an unblessed context, thus any | 14 // WARNING: WebViewInternal could be loaded in an unblessed context, thus any |
| 14 // new APIs must extend WebViewInternalExtensionFunction or | 15 // new APIs must extend WebViewInternalExtensionFunction or |
| 15 // WebViewInternalExecuteCodeFunction which do a process ID check to prevent | 16 // WebViewInternalExecuteCodeFunction which do a process ID check to prevent |
| 16 // abuse by normal renderer processes. | 17 // abuse by normal renderer processes. |
| 17 // TODO(guohui): refactor WebViewInternalExecuteCodeFunction to also extend | 18 // TODO(guohui): refactor WebViewInternalExecuteCodeFunction to also extend |
| 18 // WebViewInternalExtensionFunction. | 19 // WebViewInternalExtensionFunction. |
| 19 namespace extensions { | 20 namespace extensions { |
| 20 | 21 |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 207 virtual bool ShouldInsertCSS() const OVERRIDE; | 208 virtual bool ShouldInsertCSS() const OVERRIDE; |
| 208 | 209 |
| 209 DECLARE_EXTENSION_FUNCTION("webViewInternal.insertCSS", | 210 DECLARE_EXTENSION_FUNCTION("webViewInternal.insertCSS", |
| 210 WEBVIEWINTERNAL_INSERTCSS) | 211 WEBVIEWINTERNAL_INSERTCSS) |
| 211 | 212 |
| 212 private: | 213 private: |
| 213 DISALLOW_COPY_AND_ASSIGN(WebViewInternalInsertCSSFunction); | 214 DISALLOW_COPY_AND_ASSIGN(WebViewInternalInsertCSSFunction); |
| 214 }; | 215 }; |
| 215 | 216 |
| 216 class WebViewInternalCaptureVisibleRegionFunction | 217 class WebViewInternalCaptureVisibleRegionFunction |
| 217 : public extensions::CaptureWebContentsFunction { | 218 : public extensions::CaptureWebContentsFunction<AsyncExtensionFunction> { |
| 218 DECLARE_EXTENSION_FUNCTION("webViewInternal.captureVisibleRegion", | 219 DECLARE_EXTENSION_FUNCTION("webViewInternal.captureVisibleRegion", |
| 219 WEBVIEWINTERNAL_CAPTUREVISIBLEREGION); | 220 WEBVIEWINTERNAL_CAPTUREVISIBLEREGION); |
| 220 | 221 |
| 221 WebViewInternalCaptureVisibleRegionFunction(); | 222 WebViewInternalCaptureVisibleRegionFunction(); |
| 222 | 223 |
| 223 protected: | 224 protected: |
| 224 virtual ~WebViewInternalCaptureVisibleRegionFunction(); | 225 virtual ~WebViewInternalCaptureVisibleRegionFunction(); |
| 225 | 226 |
| 226 private: | 227 private: |
| 227 // extensions::CaptureWebContentsFunction implementation. | 228 // extensions::CaptureWebContentsFunction implementation. |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 private: | 434 private: |
| 434 // WebViewInternalExtensionFunction implementation. | 435 // WebViewInternalExtensionFunction implementation. |
| 435 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE; | 436 virtual bool RunAsyncSafe(WebViewGuest* guest) OVERRIDE; |
| 436 | 437 |
| 437 DISALLOW_COPY_AND_ASSIGN(WebViewInternalTerminateFunction); | 438 DISALLOW_COPY_AND_ASSIGN(WebViewInternalTerminateFunction); |
| 438 }; | 439 }; |
| 439 | 440 |
| 440 } // namespace extensions | 441 } // namespace extensions |
| 441 | 442 |
| 442 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_VIEW_WEB_VIEW_INTERNAL_API_H_ | 443 #endif // CHROME_BROWSER_EXTENSIONS_API_WEB_VIEW_WEB_VIEW_INTERNAL_API_H_ |
| OLD | NEW |