Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Issue 28294: Modified clipboard classes to use string16 instead of std::wstring (Closed)

Created:
11 years, 10 months ago by mark.a.lindner
Modified:
9 years, 7 months ago
Reviewers:
dsh, brettw, Evan Stade
CC:
chromium-reviews_googlegroups.com
Visibility:
Public.

Description

Modified clipboard classes to use string16 instead of std::wstring committed in r10860

Patch Set 1 #

Patch Set 2 : '' #

Total comments: 6

Patch Set 3 : '' #

Patch Set 4 : '' #

Total comments: 3

Patch Set 5 : '' #

Patch Set 6 : '' #

Total comments: 9

Patch Set 7 : '' #

Total comments: 2

Patch Set 8 : '' #

Patch Set 9 : '' #

Total comments: 4

Patch Set 10 : '' #

Patch Set 11 : '' #

Patch Set 12 : '' #

Patch Set 13 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+133 lines, -105 lines) Patch
M base/clipboard.h View 1 2 3 4 5 6 7 8 9 10 4 chunks +12 lines, -8 lines 0 comments Download
M base/clipboard_linux.cc View 1 2 3 4 5 6 7 8 9 10 4 chunks +10 lines, -6 lines 0 comments Download
M base/clipboard_mac.mm View 1 2 3 4 5 6 7 8 9 10 7 chunks +16 lines, -16 lines 0 comments Download
M base/clipboard_unittest.cc View 1 2 3 4 5 6 7 8 9 10 13 chunks +27 lines, -25 lines 0 comments Download
M base/clipboard_win.cc View 1 2 3 4 5 6 7 8 9 10 14 chunks +21 lines, -22 lines 0 comments Download
M base/scoped_clipboard_writer.h View 1 2 3 4 5 6 7 8 9 10 2 chunks +11 lines, -6 lines 0 comments Download
M base/scoped_clipboard_writer.cc View 1 2 3 4 5 6 7 8 9 10 5 chunks +28 lines, -19 lines 0 comments Download
base/string_util.h View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
chrome/browser/renderer_host/resource_message_filter.cc View 4 5 6 7 8 9 10 2 chunks +6 lines, -2 lines 0 comments Download
M chrome/browser/tab_contents/render_view_context_menu_controller.cc View 4 5 6 7 8 9 10 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 17 (0 generated)
Evan Stade
if this is still a work in progress, ignore me, but I wanted to make ...
11 years, 9 months ago (2009-02-28 02:58:54 UTC) #1
dsh
Hi, I don't have much insight on the clipboard bits, but the filenames should be ...
11 years, 9 months ago (2009-02-28 04:23:26 UTC) #2
Evan Stade
Hi Mark, please use the code review tool to respond, as emails don't get scraped ...
11 years, 9 months ago (2009-03-01 01:38:24 UTC) #3
dsh
Hi Mark, This looks good except please use the Hack functions noted below wherever they ...
11 years, 9 months ago (2009-03-02 20:28:52 UTC) #4
mark.a.lindner
> http://codereview.chromium.org/28294/diff/36/1025 > File base/scoped_clipboard_writer.h (right): > > http://codereview.chromium.org/28294/diff/36/1025#newcode14 > Line 14: #include <vector> > ...
11 years, 9 months ago (2009-03-02 20:33:23 UTC) #5
mark.a.lindner
http://codereview.chromium.org/28294/diff/1052/59 File base/scoped_clipboard_writer.cc (right): http://codereview.chromium.org/28294/diff/1052/59#newcode95 Line 95: FilePath filepath = *iter; > For the byte-packing, ...
11 years, 9 months ago (2009-03-02 20:39:41 UTC) #6
dsh
OK, please still fix the Hack comments I made before and the minor curly brace ...
11 years, 9 months ago (2009-03-02 20:59:48 UTC) #7
mark.a.lindner
On 2009/03/02 20:59:48, dsh wrote: > OK, please still fix the Hack comments I made ...
11 years, 9 months ago (2009-03-02 21:18:12 UTC) #8
Evan Stade
you'll have to update the functions that decode the file paths from the byte vector. ...
11 years, 9 months ago (2009-03-02 21:21:36 UTC) #9
dsh
http://codereview.chromium.org/28294/diff/76/86 File chrome/browser/tab_contents/render_view_context_menu_controller.cc (right): http://codereview.chromium.org/28294/diff/76/86#newcode71 Line 71: // TODO(mlindner): fix this call and upstream code ...
11 years, 9 months ago (2009-03-02 21:26:42 UTC) #10
brettw
http://codereview.chromium.org/28294/diff/36/1025 File base/scoped_clipboard_writer.h (right): http://codereview.chromium.org/28294/diff/36/1025#newcode14 Line 14: #include <vector> This isn't just about lint. Files ...
11 years, 9 months ago (2009-03-02 21:27:09 UTC) #11
mark.a.lindner
On 2009/03/02 21:21:36, estade wrote: > you'll have to update the functions that decode the ...
11 years, 9 months ago (2009-03-02 23:22:02 UTC) #12
Evan Stade
WriteFiles() in the Clipboard class
11 years, 9 months ago (2009-03-02 23:47:21 UTC) #13
mark.a.lindner
On 2009/03/02 21:21:36, estade wrote: > you'll have to update the functions that decode the ...
11 years, 9 months ago (2009-03-03 00:31:47 UTC) #14
Evan Stade
OK, just 2 more comments. In the meantime, I'll run this by the trybots for ...
11 years, 9 months ago (2009-03-03 00:45:04 UTC) #15
mark.a.lindner
http://codereview.chromium.org/28294/diff/1012/16 File base/scoped_clipboard_writer.h (right): http://codereview.chromium.org/28294/diff/1012/16#newcode13 Line 13: #include <string> On 2009/02/28 02:58:54, estade wrote: > ...
11 years, 9 months ago (2009-03-03 00:57:18 UTC) #16
Evan Stade
11 years, 9 months ago (2009-03-03 01:52:18 UTC) #17
What OS and build command did you use? As I supposed in my first post on this
review, there are tons client callers that are complaining... I'm in the process
of fixing them. But generally you need to build more than just the module you're
touching, and on all 3 platforms if you can.

Powered by Google App Engine
This is Rietveld 408576698