Title: [119994] trunk/Source/WebCore
Revision
119994
Author
[email protected]
Date
2012-06-11 11:36:12 -0700 (Mon, 11 Jun 2012)

Log Message

[Chromium] Remove some dead code in PasteboardChromium
https://bugs.webkit.org/show_bug.cgi?id=88782

Reviewed by Adam Barth.

Part of a refactoring series. See tracking bug 82948.
Leftover detritus from bug 88038.

* platform/chromium/PasteboardChromium.cpp:
(WebCore::Pasteboard::documentFragment):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (119993 => 119994)


--- trunk/Source/WebCore/ChangeLog	2012-06-11 18:35:09 UTC (rev 119993)
+++ trunk/Source/WebCore/ChangeLog	2012-06-11 18:36:12 UTC (rev 119994)
@@ -1,3 +1,16 @@
+2012-06-11  Mark Pilgrim  <[email protected]>
+
+        [Chromium] Remove some dead code in PasteboardChromium
+        https://bugs.webkit.org/show_bug.cgi?id=88782
+
+        Reviewed by Adam Barth.
+
+        Part of a refactoring series. See tracking bug 82948.
+        Leftover detritus from bug 88038.
+
+        * platform/chromium/PasteboardChromium.cpp:
+        (WebCore::Pasteboard::documentFragment):
+
 2012-06-11  Peter Beverloo  <[email protected]>
 
         [Chromium] Theme updates for Android in menu list rendering and selection backgrounds

Modified: trunk/Source/WebCore/platform/chromium/PasteboardChromium.cpp (119993 => 119994)


--- trunk/Source/WebCore/platform/chromium/PasteboardChromium.cpp	2012-06-11 18:35:09 UTC (rev 119993)
+++ trunk/Source/WebCore/platform/chromium/PasteboardChromium.cpp	2012-06-11 18:36:12 UTC (rev 119994)
@@ -1,10 +1,10 @@
 /*
  * Copyright (c) 2008, 2009, Google Inc. All rights reserved.
- * 
+ *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions are
  * met:
- * 
+ *
  *     * Redistributions of source code must retain the above copyright
  * notice, this list of conditions and the following disclaimer.
  *     * Redistributions in binary form must reproduce the above
@@ -14,7 +14,7 @@
  *     * Neither the name of Google Inc. nor the names of its
  * contributors may be used to endorse or promote products derived from
  * this software without specific prior written permission.
- * 
+ *
  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
@@ -186,10 +186,6 @@
         unsigned fragmentEnd = 0;
         WebKit::WebURL url;
         markup = WebKit::Platform::current()->clipboard()->readHTML(buffer, &url, &fragmentStart, &fragmentEnd);
-
-        
-        //        PlatformSupport::clipboardReadHTML(buffer, &markup, &srcURL, &fragmentStart, &fragmentEnd);
-
         if (!markup.isEmpty()) {
           RefPtr<DocumentFragment> fragment =
               createFragmentFromMarkupWithContext(frame->document(), markup, fragmentStart, fragmentEnd, KURL(url), DisallowScriptingContent);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to