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

Issue 2830036: Advanced (Under the Hood) options panel code review (Closed)

Created:
10 years, 5 months ago by csilv
Modified:
9 years, 7 months ago
CC:
chromium-reviews, ben+cc_chromium.org, stuartmorgan, Evan Stade, sargrass
Visibility:
Public.

Description

- First round implementation of the Advanced (Under the Hood) options panel. - All checkboxes are functional, partial functionality for buttons. - Download path controls TBD. - Security SSL checkboxes on non-Mac platform TBD. - Added placeholder files for Browser and Personal option panels. - Moved placeholder CSS into a new options_page.css file. - Unit testing TBD. BUG=48482 TEST=Launch browser with --enable-tabbed-options and bring up options window. Committed: http://src.chromium.org/viewvc/chrome?view=rev&revision=51770

Patch Set 1 #

Total comments: 27

Patch Set 2 : '' #

Total comments: 15

Patch Set 3 : '' #

Total comments: 6

Patch Set 4 : '' #

Patch Set 5 : '' #

Patch Set 6 : '' #

Patch Set 7 : '' #

Unified diffs Side-by-side diffs Delta from patch set Stats (+775 lines, -91 lines) Patch
A chrome/browser/dom_ui/advanced_options_handler.h View 1 2 3 1 chunk +40 lines, -0 lines 0 comments Download
A chrome/browser/dom_ui/advanced_options_handler.cc View 1 2 1 chunk +123 lines, -0 lines 0 comments Download
A chrome/browser/dom_ui/advanced_options_utils_mac.h View 1 2 1 chunk +23 lines, -0 lines 0 comments Download
A chrome/browser/dom_ui/advanced_options_utils_mac.mm View 1 2 1 chunk +40 lines, -0 lines 0 comments Download
A chrome/browser/dom_ui/browser_options_handler.h View 1 2 1 chunk +23 lines, -0 lines 0 comments Download
A chrome/browser/dom_ui/browser_options_handler.cc View 1 chunk +68 lines, -0 lines 0 comments Download
M chrome/browser/dom_ui/core_options_handler.cc View 1 2 3 4 5 6 1 chunk +6 lines, -7 lines 0 comments Download
M chrome/browser/dom_ui/options_ui.cc View 1 2 3 4 5 6 2 chunks +6 lines, -0 lines 0 comments Download
A chrome/browser/dom_ui/personal_options_handler.h View 1 2 1 chunk +23 lines, -0 lines 0 comments Download
A chrome/browser/dom_ui/personal_options_handler.cc View 1 chunk +60 lines, -0 lines 0 comments Download
M chrome/browser/resources/options.html View 1 2 3 4 5 6 5 chunks +24 lines, -75 lines 0 comments Download
A chrome/browser/resources/options/advanced_options.html View 1 2 3 1 chunk +128 lines, -0 lines 0 comments Download
A chrome/browser/resources/options/advanced_options.js View 1 2 1 chunk +66 lines, -0 lines 0 comments Download
A chrome/browser/resources/options/browser_options.html View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
A chrome/browser/resources/options/browser_options.js View 1 chunk +32 lines, -0 lines 0 comments Download
M chrome/browser/resources/options/chromeos_system_options.html View 3 4 5 6 4 chunks +10 lines, -9 lines 0 comments Download
A chrome/browser/resources/options/options_page.css View 1 2 1 chunk +57 lines, -0 lines 0 comments Download
A chrome/browser/resources/options/personal_options.html View 1 2 1 chunk +3 lines, -0 lines 0 comments Download
A chrome/browser/resources/options/personal_options.js View 1 chunk +32 lines, -0 lines 0 comments Download
M chrome/chrome_browser.gypi View 1 2 3 4 5 6 1 chunk +8 lines, -0 lines 0 comments Download

Messages

Total messages: 15 (0 generated)
csilv
This is an implementation of the Advanced (Under the Hood) options panel. While the panel ...
10 years, 5 months ago (2010-07-01 22:02:28 UTC) #1
arv (Not doing code reviews)
Awesome http://codereview.chromium.org/2830036/diff/1/3 File chrome/browser/dom_ui/advanced_options_handler.cc (right): http://codereview.chromium.org/2830036/diff/1/3#newcode26 chrome/browser/dom_ui/advanced_options_handler.cc:26: std::wstring(L"<a href='") + You should not need to ...
10 years, 5 months ago (2010-07-01 22:25:38 UTC) #2
zel
http://codereview.chromium.org/2830036/diff/12001/13002 File chrome/browser/dom_ui/advanced_options_handler.cc (right): http://codereview.chromium.org/2830036/diff/12001/13002#newcode25 chrome/browser/dom_ui/advanced_options_handler.cc:25: localized_strings->SetString(L"privacyLearnMore", I believe that you should be able to ...
10 years, 5 months ago (2010-07-01 22:41:59 UTC) #3
zel
http://codereview.chromium.org/2830036/diff/12001/13020 File chrome/browser/resources/options_chromeos.html (right): http://codereview.chromium.org/2830036/diff/12001/13020#newcode1 chrome/browser/resources/options_chromeos.html:1: <!DOCTYPE HTML> On 2010/07/01 22:41:59, zel wrote: > we ...
10 years, 5 months ago (2010-07-01 22:43:11 UTC) #4
James Hawkins
http://codereview.chromium.org/2830036/diff/1/4 File chrome/browser/dom_ui/advanced_options_handler.h (right): http://codereview.chromium.org/2830036/diff/1/4#newcode8 chrome/browser/dom_ui/advanced_options_handler.h:8: #include <string> Looks like you don't need this include. ...
10 years, 5 months ago (2010-07-01 22:44:02 UTC) #5
dhg
http://codereview.chromium.org/2830036/diff/12001/13013 File chrome/browser/resources/options/advanced_options.html (right): http://codereview.chromium.org/2830036/diff/12001/13013#newcode3 chrome/browser/resources/options/advanced_options.html:3: <div class="header-title" i18n-content="advancedPage">UNDER THE HOOD</div> That goes for the ...
10 years, 5 months ago (2010-07-01 22:59:09 UTC) #6
csilv
Thank you all for thorough reviews. I believe I've addressed all the feedback, please give ...
10 years, 5 months ago (2010-07-02 02:05:37 UTC) #7
Nico
Please open a bug for this (if there isn't one already) and reference it in ...
10 years, 5 months ago (2010-07-02 15:18:00 UTC) #8
zel
Good point. We should file bugs for all other DOM UI options work items. On ...
10 years, 5 months ago (2010-07-02 15:25:42 UTC) #9
zel
LGTM with few minor comments http://codereview.chromium.org/2830036/diff/29001/26003 File chrome/browser/dom_ui/advanced_options_handler.h (right): http://codereview.chromium.org/2830036/diff/29001/26003#newcode28 chrome/browser/dom_ui/advanced_options_handler.h:28: // Callback for the ...
10 years, 5 months ago (2010-07-02 22:34:11 UTC) #10
csilv
http://codereview.chromium.org/2830036/diff/29001/26003 File chrome/browser/dom_ui/advanced_options_handler.h (right): http://codereview.chromium.org/2830036/diff/29001/26003#newcode28 chrome/browser/dom_ui/advanced_options_handler.h:28: // Callback for the "showMacNetworkProxySettings" message. This will invoke ...
10 years, 5 months ago (2010-07-03 00:19:37 UTC) #11
arv (Not doing code reviews)
> http://codereview.chromium.org/2830036/diff/29001/26012#newcode67 > chrome/browser/resources/options.html:67: <hr /> > On 2010/07/02 22:34:11, zel wrote: >> >> remove ...
10 years, 5 months ago (2010-07-03 00:27:48 UTC) #12
csilv
On 2010/07/03 00:27:48, arv wrote: > HTML has no />. It should be <hr> Done.
10 years, 5 months ago (2010-07-03 00:31:20 UTC) #13
csilv
FYI, I'm aware that the unit tests currently fail. This will be resolved once Zel's ...
10 years, 5 months ago (2010-07-03 00:33:23 UTC) #14
zel
10 years, 5 months ago (2010-07-03 00:47:27 UTC) #15
My CL had landed:
http://src.chromium.org/viewvc/chrome?view=rev&revision=51578


On Fri, Jul 2, 2010 at 5:33 PM, <csilv@chromium.org> wrote:

> FYI, I'm aware that the unit tests currently fail.  This will be resolved
> once
> Zel's related CL for conditional includes is submitted.  I will re-base to
> that
> CL and make sure unit tests pass before submitting.
>
>
> http://codereview.chromium.org/2830036/show
>

Powered by Google App Engine
This is Rietveld 408576698