diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 00:15:20 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-02-26 00:15:20 +0000 |
commit | c62ce3e9f74a7b55b2d50c227555a3c198fd9cf3 (patch) | |
tree | 53fc0d34109ac909a7ba8f603835da8468abcd10 /chrome/renderer/renderer.vcproj | |
parent | bb095ea448d990cf3ab9ae3af4c9fc11d6348f90 (diff) | |
download | chromium_src-c62ce3e9f74a7b55b2d50c227555a3c198fd9cf3.zip chromium_src-c62ce3e9f74a7b55b2d50c227555a3c198fd9cf3.tar.gz chromium_src-c62ce3e9f74a7b55b2d50c227555a3c198fd9cf3.tar.bz2 |
Chromium changes to use new WebKit, WebKitClient, and WebClipboard interfaces.
A new WebKitClientImpl class is added to webkit/glue that consumers can use to
help implement WebKitClient. In the future, consumers will likely subclass
WebKitClientImpl. For now, that is not necessary.
Since a WebImage may not hold a SkBitmap, I needed to modify
ScopedClipboardWriterGlue to not deal in SkBitmaps. So, I just added a
WriteBitmapFromPixels method in place of the WriteBitmap method. That method
is actually named the same as the one from the base class, which is perhaps
kind of nice since the purpose of ScopedClipboardWriterGlue is to override the
default way of sending an image to the clipboard!
R=dglazkov
Review URL: http://codereview.chromium.org/28119
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10416 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/renderer.vcproj')
-rw-r--r-- | chrome/renderer/renderer.vcproj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/renderer/renderer.vcproj b/chrome/renderer/renderer.vcproj index 684ec52..caa5e20 100644 --- a/chrome/renderer/renderer.vcproj +++ b/chrome/renderer/renderer.vcproj @@ -18,7 +18,7 @@ <Configuration Name="Debug|Win32" ConfigurationType="4" - InheritedPropertySheets=".\renderer.vsprops;$(SolutionDir)..\build\debug.vsprops;..\tools\build\win\precompiled_wtl.vsprops" + InheritedPropertySheets=".\renderer.vsprops;$(SolutionDir)..\build\debug.vsprops;..\tools\build\win\precompiled_wtl.vsprops;..\..\webkit\build\WebKit\using_WebKit.vsprops" > <Tool Name="VCPreBuildEventTool" @@ -69,7 +69,7 @@ <Configuration Name="Release|Win32" ConfigurationType="4" - InheritedPropertySheets=".\renderer.vsprops;$(SolutionDir)..\build\release.vsprops" + InheritedPropertySheets=".\renderer.vsprops;$(SolutionDir)..\build\release.vsprops;..\..\webkit\build\WebKit\using_WebKit.vsprops" > <Tool Name="VCPreBuildEventTool" |