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

Issue 294025: DevTools: Implement raw cookies access for inspector. (Closed)

Created:
11 years, 2 months ago by pfeldman
Modified:
9 years, 7 months ago
Reviewers:
yurys
Visibility:
Public.

Description

DevTools: Implement raw cookies access for inspector. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=30457

Patch Set 1 #

Patch Set 2 : revert devtools.js that should not have been changed #

Total comments: 8

Patch Set 3 : '' #

Patch Set 4 : '' #

Patch Set 5 : '' #

Total comments: 6
Unified diffs Side-by-side diffs Delta from patch set Stats (+436 lines, -27 lines) Patch
M chrome/browser/child_process_security_policy.h View 1 2 3 2 chunks +11 lines, -2 lines 0 comments Download
M chrome/browser/child_process_security_policy.cc View 1 2 3 6 chunks +47 lines, -1 line 0 comments Download
M chrome/browser/debugger/devtools_manager.cc View 1 2 3 10 chunks +27 lines, -24 lines 0 comments Download
M chrome/browser/renderer_host/resource_message_filter.h View 1 2 3 2 chunks +9 lines, -0 lines 0 comments Download
M chrome/browser/renderer_host/resource_message_filter.cc View 1 2 3 3 chunks +51 lines, -0 lines 6 comments Download
M chrome/common/render_messages.h View 1 2 3 2 chunks +31 lines, -0 lines 0 comments Download
M chrome/common/render_messages_internal.h View 1 2 3 1 chunk +12 lines, -0 lines 0 comments Download
M chrome/renderer/renderer_webkitclient_impl.h View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/renderer/renderer_webkitclient_impl.cc View 1 2 3 3 chunks +36 lines, -0 lines 0 comments Download
M net/base/cookie_monster.h View 1 2 3 1 chunk +3 lines, -0 lines 0 comments Download
M net/base/cookie_monster.cc View 1 2 3 1 chunk +32 lines, -0 lines 0 comments Download
A webkit/api/public/WebCookie.h View 3 4 1 chunk +77 lines, -0 lines 0 comments Download
M webkit/api/public/WebKitClient.h View 1 2 3 3 chunks +4 lines, -0 lines 0 comments Download
A webkit/glue/webcookie.h View 3 4 1 chunk +66 lines, -0 lines 0 comments Download
M webkit/glue/webkitclient_impl.h View 1 2 3 1 chunk +5 lines, -0 lines 0 comments Download
M webkit/glue/webkitclient_impl.cc View 1 2 3 4 chunks +18 lines, -0 lines 0 comments Download
M webkit/webkit.gyp View 1 2 3 2 chunks +2 lines, -0 lines 0 comments Download

Messages

Total messages: 5 (0 generated)
pfeldman
Here is the sync version with childsecuritypolicy used.
11 years, 2 months ago (2009-10-20 16:35:46 UTC) #1
darin (slow to review)
I'm sorry for the delay. I actually wrote these comments last week, but somehow failed ...
11 years, 1 month ago (2009-10-26 17:06:11 UTC) #2
pfeldman
On 2009/10/26 17:06:11, darin wrote: > I'm sorry for the delay. I actually wrote these ...
11 years, 1 month ago (2009-10-29 15:28:32 UTC) #3
yurys
LGTM with comments http://codereview.chromium.org/294025/diff/11001/11014 File chrome/browser/renderer_host/resource_message_filter.cc (right): http://codereview.chromium.org/294025/diff/11001/11014#newcode517 Line 517: DCHECK(cookie_monster); remove this line http://codereview.chromium.org/294025/diff/11001/11014#newcode533 ...
11 years, 1 month ago (2009-10-29 16:00:49 UTC) #4
pfeldman
11 years, 1 month ago (2009-10-29 16:08:28 UTC) #5
http://codereview.chromium.org/294025/diff/11001/11014
File chrome/browser/renderer_host/resource_message_filter.cc (right):

http://codereview.chromium.org/294025/diff/11001/11014#newcode517
Line 517: DCHECK(cookie_monster);
On 2009/10/29 16:00:49, Yury Semikhatsky wrote:
> remove this line

Done.

http://codereview.chromium.org/294025/diff/11001/11014#newcode533
Line 533: it->Value(),
On 2009/10/29 16:00:49, Yury Semikhatsky wrote:
> wrong parameters indnentation 

Done.

http://codereview.chromium.org/294025/diff/11001/11014#newcode550
Line 550: if (!cookie_monster)
On 2009/10/29 16:00:49, Yury Semikhatsky wrote:
> be consistent:
> if (!cookie_monster) {
>    NOTREACHED();
>    return;
> } 

Done.

Powered by Google App Engine
This is Rietveld 408576698