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

Issue 341563002: Theme Preferences for Distilled Pages (Closed)

Created:
6 years, 6 months ago by smaslo
Modified:
6 years, 5 months ago
CC:
chromium-reviews, darin-cc_chromium.org, jam, sunangel
Project:
chromium
Visibility:
Public.

Description

Theme Preferences for Distilled Pages Adds support for allowing users to change the appearance of distilled pages to different themes. The current themes are light, dark and sepia. The theme of the page is controlled by the CSS class of the body element. When the page is loaded, this CSS class is set by inserting the CSS class into the HTML. When a setting is changed while a distilled page is open, the CSS class is set by calling the JavaScript function useTheme which then updates the body element's CSS class. BUG=383630 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=283303

Patch Set 1 #

Patch Set 2 : Minor changes #

Total comments: 22

Patch Set 3 : Switched to Profile from PrefService #

Total comments: 14

Patch Set 4 : Moved constants to new file and style fixes #

Patch Set 5 : Moved constants to dom_distiller namespace #

Patch Set 6 : New files #

Total comments: 2

Patch Set 7 : Minor change to constant name #

Total comments: 48

Patch Set 8 : Moved back to PrefService from Profile; removed instance in LazyDomDistillerService #

Patch Set 9 : Minor #

Total comments: 12

Patch Set 10 : Changes from comments on patch 9 #

Total comments: 20

Patch Set 11 : Implmented CSS Classes, rebased CSS, added Javascript for instantaneous changes #

Total comments: 62

Patch Set 12 : Slight change to CSS for sepia #

Patch Set 13 : Changes to viewer_unittests.cc #

Patch Set 14 : Fixed runtime error, Moved CSS class names to viewer.cc #

Patch Set 15 : Minor changes #

Total comments: 38

Patch Set 16 : Comments from Patch 15 #

Total comments: 17

Patch Set 17 : Changed names and added tests #

Total comments: 46

Patch Set 18 : Adding JavaScript method, changes to colors #

Patch Set 19 : Minor changes to tests #

Total comments: 14

Patch Set 20 : Synced Branch - New Baseline #

Patch Set 21 : Formatting changes and enum name change #

Total comments: 10

Patch Set 22 : Fixing compile and patch errors #

Patch Set 23 : Minor changes to fix compiler error #

Patch Set 24 : More minor changes for compiler errors #

Patch Set 25 : Added tests; still working on errors #

Patch Set 26 : Changed how accessed enum to agree with gcc #

Total comments: 2

Patch Set 27 : change from comment #

Patch Set 28 : Adding required dependency #

Total comments: 2

Patch Set 29 : Minor change - dependency order #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+490 lines, -43 lines) Patch
M chrome/browser/dom_distiller/dom_distiller_service_factory.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +3 lines, -1 line 0 comments Download
M chrome/browser/dom_distiller/dom_distiller_service_factory.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 3 chunks +13 lines, -4 lines 0 comments Download
M chrome/browser/dom_distiller/dom_distiller_viewer_source_browsertest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 4 chunks +37 lines, -1 line 0 comments Download
M chrome/browser/dom_distiller/lazy_dom_distiller_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/dom_distiller/lazy_dom_distiller_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +5 lines, -0 lines 0 comments Download
M chrome/browser/extensions/api/reading_list_private/reading_list_private_apitest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +12 lines, -1 line 0 comments Download
M chrome/browser/prefs/browser_prefs.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 2 chunks +2 lines, -0 lines 0 comments Download
M components/components_tests.gyp View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 2 chunks +2 lines, -0 lines 1 comment Download
M components/dom_distiller.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 1 chunk +2 lines, -0 lines 0 comments Download
M components/dom_distiller/DEPS View 1 2 3 4 5 6 7 8 9 10 1 chunk +1 line, -0 lines 0 comments Download
M components/dom_distiller/content/dom_distiller_viewer_source.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 11 chunks +32 lines, -9 lines 0 comments Download
M components/dom_distiller/content/resources/dom_distiller_viewer.html View 1 2 3 4 5 6 7 8 9 10 11 12 13 1 chunk +2 lines, -2 lines 0 comments Download
M components/dom_distiller/content/resources/dom_distiller_viewer.js View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +15 lines, -1 line 0 comments Download
M components/dom_distiller/core/css/distilledpage.css View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 4 chunks +43 lines, -5 lines 1 comment Download
A components/dom_distiller/core/distilled_page_prefs.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 1 chunk +63 lines, -0 lines 0 comments Download
A components/dom_distiller/core/distilled_page_prefs.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +71 lines, -0 lines 0 comments Download
A components/dom_distiller/core/distilled_page_prefs_unittests.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 1 chunk +75 lines, -0 lines 0 comments Download
M components/dom_distiller/core/dom_distiller_service.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 5 chunks +9 lines, -1 line 0 comments Download
M components/dom_distiller/core/dom_distiller_service.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +8 lines, -2 lines 0 comments Download
M components/dom_distiller/core/dom_distiller_service_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 2 chunks +3 lines, -1 line 0 comments Download
M components/dom_distiller/core/viewer.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 5 chunks +9 lines, -3 lines 0 comments Download
M components/dom_distiller/core/viewer.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 7 chunks +50 lines, -11 lines 0 comments Download
M components/dom_distiller/core/viewer_unittest.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 3 chunks +21 lines, -0 lines 0 comments Download
M components/dom_distiller/standalone/content_extractor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 3 chunks +10 lines, -1 line 0 comments Download
M components/pref_registry.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 1 chunk +1 line, -0 lines 0 comments Download

Messages

Total messages: 47 (0 generated)
smaslo
6 years, 6 months ago (2014-06-17 17:34:41 UTC) #1
smaslo
6 years, 6 months ago (2014-06-17 17:51:09 UTC) #2
robliao
https://codereview.chromium.org/341563002/diff/20001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc File chrome/browser/dom_distiller/lazy_dom_distiller_service.cc (right): https://codereview.chromium.org/341563002/diff/20001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc#newcode24 chrome/browser/dom_distiller/lazy_dom_distiller_service.cc:24: reader_mode_prefs = scoped_ptr<ReaderModePrefs>( Should be able to do reader_mode_prefs.reset(new ...
6 years, 6 months ago (2014-06-17 18:01:50 UTC) #3
smaslo
https://codereview.chromium.org/341563002/diff/20001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc File chrome/browser/dom_distiller/lazy_dom_distiller_service.cc (right): https://codereview.chromium.org/341563002/diff/20001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc#newcode24 chrome/browser/dom_distiller/lazy_dom_distiller_service.cc:24: reader_mode_prefs = scoped_ptr<ReaderModePrefs>( On 2014/06/17 18:01:49, robliao wrote: > ...
6 years, 6 months ago (2014-06-17 22:44:08 UTC) #4
robliao
Some nits. https://codereview.chromium.org/341563002/diff/40001/components/dom_distiller/core/reader_mode_preferences.cc File components/dom_distiller/core/reader_mode_preferences.cc (right): https://codereview.chromium.org/341563002/diff/40001/components/dom_distiller/core/reader_mode_preferences.cc#newcode19 components/dom_distiller/core/reader_mode_preferences.cc:19: const char kHigh_Contrast_Pref[] = "reader_mode.high_contrast"; Remove one ...
6 years, 6 months ago (2014-06-17 23:08:16 UTC) #5
smaslo
https://codereview.chromium.org/341563002/diff/40001/components/dom_distiller/core/reader_mode_preferences.cc File components/dom_distiller/core/reader_mode_preferences.cc (right): https://codereview.chromium.org/341563002/diff/40001/components/dom_distiller/core/reader_mode_preferences.cc#newcode19 components/dom_distiller/core/reader_mode_preferences.cc:19: const char kHigh_Contrast_Pref[] = "reader_mode.high_contrast"; On 2014/06/17 23:08:15, robliao ...
6 years, 6 months ago (2014-06-18 16:57:15 UTC) #6
robliao
One last comment. https://codereview.chromium.org/341563002/diff/100001/components/dom_distiller/core/viewer.cc File components/dom_distiller/core/viewer.cc (right): https://codereview.chromium.org/341563002/diff/100001/components/dom_distiller/core/viewer.cc#newcode32 components/dom_distiller/core/viewer.cc:32: const char kWHITE[] = "#FFF"; The ...
6 years, 6 months ago (2014-06-18 18:09:27 UTC) #7
smaslo
https://codereview.chromium.org/341563002/diff/100001/components/dom_distiller/core/viewer.cc File components/dom_distiller/core/viewer.cc (right): https://codereview.chromium.org/341563002/diff/100001/components/dom_distiller/core/viewer.cc#newcode32 components/dom_distiller/core/viewer.cc:32: const char kWHITE[] = "#FFF"; On 2014/06/18 18:09:27, robliao ...
6 years, 6 months ago (2014-06-18 18:20:40 UTC) #8
robliao
On 2014/06/18 18:20:40, smaslo wrote: > https://codereview.chromium.org/341563002/diff/100001/components/dom_distiller/core/viewer.cc > File components/dom_distiller/core/viewer.cc (right): > > https://codereview.chromium.org/341563002/diff/100001/components/dom_distiller/core/viewer.cc#newcode32 > ...
6 years, 6 months ago (2014-06-18 21:37:34 UTC) #9
smaslo
6 years, 6 months ago (2014-06-18 21:44:53 UTC) #10
smaslo
6 years, 6 months ago (2014-06-18 21:54:50 UTC) #11
smaslo
6 years, 6 months ago (2014-06-18 21:56:05 UTC) #12
smaslo
Owners: Please provide owner approval for these files: battre: chrome/browser/prefs/browser_prefs.cc nyquist: All others
6 years, 6 months ago (2014-06-18 22:12:45 UTC) #13
smaslo
Hello, This is a just a reminder that I need owner approval for the following ...
6 years, 6 months ago (2014-06-20 21:30:43 UTC) #14
battre
Hi. Sorry, I was OOO. I have a couple of nits and one important architectural ...
6 years, 6 months ago (2014-06-23 08:37:24 UTC) #15
nyquist
https://codereview.chromium.org/341563002/diff/120001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc File chrome/browser/dom_distiller/lazy_dom_distiller_service.cc (right): https://codereview.chromium.org/341563002/diff/120001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc#newcode24 chrome/browser/dom_distiller/lazy_dom_distiller_service.cc:24: reader_mode_prefs_.reset(new ReaderModePrefs(profile_)); On 2014/06/23 08:37:23, battre wrote: > Move ...
6 years, 6 months ago (2014-06-23 16:03:06 UTC) #16
smaslo
https://codereview.chromium.org/341563002/diff/120001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc File chrome/browser/dom_distiller/lazy_dom_distiller_service.cc (right): https://codereview.chromium.org/341563002/diff/120001/chrome/browser/dom_distiller/lazy_dom_distiller_service.cc#newcode24 chrome/browser/dom_distiller/lazy_dom_distiller_service.cc:24: reader_mode_prefs_.reset(new ReaderModePrefs(profile_)); On 2014/06/23 08:37:23, battre wrote: > Move ...
6 years, 6 months ago (2014-06-23 22:14:34 UTC) #17
battre
Just a couple of nits remaining. Once fixed, this is sufficiently LGTM that I am ...
6 years, 6 months ago (2014-06-24 07:46:40 UTC) #18
smaslo
https://codereview.chromium.org/341563002/diff/160001/chrome/browser/dom_distiller/lazy_dom_distiller_service.h File chrome/browser/dom_distiller/lazy_dom_distiller_service.h (right): https://codereview.chromium.org/341563002/diff/160001/chrome/browser/dom_distiller/lazy_dom_distiller_service.h#newcode57 chrome/browser/dom_distiller/lazy_dom_distiller_service.h:57: virtual ReaderModePrefs* GetReaderModePrefs() const OVERRIDE; On 2014/06/24 07:46:39, battre ...
6 years, 6 months ago (2014-06-24 18:11:18 UTC) #19
nyquist
https://codereview.chromium.org/341563002/diff/180001/components/dom_distiller/DEPS File components/dom_distiller/DEPS (right): https://codereview.chromium.org/341563002/diff/180001/components/dom_distiller/DEPS#newcode2 components/dom_distiller/DEPS:2: "+components/pref_registry", Nit: sort https://codereview.chromium.org/341563002/diff/180001/components/dom_distiller/core/css/distilledpage.css File components/dom_distiller/core/css/distilledpage.css (right): https://codereview.chromium.org/341563002/diff/180001/components/dom_distiller/core/css/distilledpage.css#newcode12 components/dom_distiller/core/css/distilledpage.css:12: ...
6 years, 6 months ago (2014-06-24 23:08:50 UTC) #20
smaslo
https://codereview.chromium.org/341563002/diff/180001/components/dom_distiller/DEPS File components/dom_distiller/DEPS (right): https://codereview.chromium.org/341563002/diff/180001/components/dom_distiller/DEPS#newcode2 components/dom_distiller/DEPS:2: "+components/pref_registry", On 2014/06/24 23:08:49, nyquist wrote: > Nit: sort ...
6 years, 5 months ago (2014-06-26 20:05:38 UTC) #21
nyquist
I must've started the review before you sent your comments. Sorry about that. https://codereview.chromium.org/341563002/diff/200001/components/dom_distiller/content/dom_distiller_viewer_source.cc File ...
6 years, 5 months ago (2014-06-26 20:39:59 UTC) #22
smaslo
https://codereview.chromium.org/341563002/diff/200001/components/dom_distiller/content/dom_distiller_viewer_source.cc File components/dom_distiller/content/dom_distiller_viewer_source.cc (right): https://codereview.chromium.org/341563002/diff/200001/components/dom_distiller/content/dom_distiller_viewer_source.cc#newcode47 components/dom_distiller/content/dom_distiller_viewer_source.cc:47: // ViewRequestDelegate implementation. On 2014/06/26 20:39:57, nyquist wrote: > ...
6 years, 5 months ago (2014-06-27 18:33:18 UTC) #23
nyquist
https://codereview.chromium.org/341563002/diff/280001/components/dom_distiller/content/dom_distiller_viewer_source.cc File components/dom_distiller/content/dom_distiller_viewer_source.cc (right): https://codereview.chromium.org/341563002/diff/280001/components/dom_distiller/content/dom_distiller_viewer_source.cc#newcode69 components/dom_distiller/content/dom_distiller_viewer_source.cc:69: const ReaderModePrefs* GetReaderModePrefs(); Remove. https://codereview.chromium.org/341563002/diff/280001/components/dom_distiller/content/dom_distiller_viewer_source.cc#newcode84 components/dom_distiller/content/dom_distiller_viewer_source.cc:84: // Sets CSS ...
6 years, 5 months ago (2014-06-27 20:48:27 UTC) #24
smaslo
https://codereview.chromium.org/341563002/diff/280001/components/dom_distiller/content/dom_distiller_viewer_source.cc File components/dom_distiller/content/dom_distiller_viewer_source.cc (right): https://codereview.chromium.org/341563002/diff/280001/components/dom_distiller/content/dom_distiller_viewer_source.cc#newcode69 components/dom_distiller/content/dom_distiller_viewer_source.cc:69: const ReaderModePrefs* GetReaderModePrefs(); On 2014/06/27 20:48:26, nyquist wrote: > ...
6 years, 5 months ago (2014-06-30 17:57:15 UTC) #25
nyquist
https://codereview.chromium.org/341563002/diff/300001/components/dom_distiller/content/dom_distiller_viewer_source.cc File components/dom_distiller/content/dom_distiller_viewer_source.cc (right): https://codereview.chromium.org/341563002/diff/300001/components/dom_distiller/content/dom_distiller_viewer_source.cc#newcode253 components/dom_distiller/content/dom_distiller_viewer_source.cc:253: std::ostringstream js; Create a method in the viewer for ...
6 years, 5 months ago (2014-06-30 21:35:41 UTC) #26
smaslo
https://codereview.chromium.org/341563002/diff/300001/components/dom_distiller/content/dom_distiller_viewer_source.cc File components/dom_distiller/content/dom_distiller_viewer_source.cc (right): https://codereview.chromium.org/341563002/diff/300001/components/dom_distiller/content/dom_distiller_viewer_source.cc#newcode253 components/dom_distiller/content/dom_distiller_viewer_source.cc:253: std::ostringstream js; I'm not sure what you are talking ...
6 years, 5 months ago (2014-07-07 17:14:15 UTC) #27
smaslo
https://codereview.chromium.org/341563002/diff/300001/components/dom_distiller/content/dom_distiller_viewer_source.cc File components/dom_distiller/content/dom_distiller_viewer_source.cc (right): https://codereview.chromium.org/341563002/diff/300001/components/dom_distiller/content/dom_distiller_viewer_source.cc#newcode253 components/dom_distiller/content/dom_distiller_viewer_source.cc:253: std::ostringstream js; On 2014/07/07 17:14:14, smaslo wrote: > I'm ...
6 years, 5 months ago (2014-07-07 17:15:43 UTC) #28
nyquist
https://codereview.chromium.org/341563002/diff/320001/components/dom_distiller/core/css/distilledpage.css File components/dom_distiller/core/css/distilledpage.css (right): https://codereview.chromium.org/341563002/diff/320001/components/dom_distiller/core/css/distilledpage.css#newcode86 components/dom_distiller/core/css/distilledpage.css:86: * Must agree with classes returned by GetJsTheme(theme) in ...
6 years, 5 months ago (2014-07-07 19:12:49 UTC) #29
smaslo
https://codereview.chromium.org/341563002/diff/320001/components/dom_distiller/core/css/distilledpage.css File components/dom_distiller/core/css/distilledpage.css (right): https://codereview.chromium.org/341563002/diff/320001/components/dom_distiller/core/css/distilledpage.css#newcode86 components/dom_distiller/core/css/distilledpage.css:86: * Must agree with classes returned by GetJsTheme(theme) in ...
6 years, 5 months ago (2014-07-08 19:58:12 UTC) #30
smaslo
6 years, 5 months ago (2014-07-08 19:58:28 UTC) #31
nyquist
https://codereview.chromium.org/341563002/diff/360001/components/dom_distiller/core/distilled_page_prefs.cc File components/dom_distiller/core/distilled_page_prefs.cc (right): https://codereview.chromium.org/341563002/diff/360001/components/dom_distiller/core/distilled_page_prefs.cc#newcode40 components/dom_distiller/core/distilled_page_prefs.cc:40: if (new_theme >= Theme::kThemeCount) { When a parameter is ...
6 years, 5 months ago (2014-07-08 22:26:48 UTC) #32
smaslo
https://codereview.chromium.org/341563002/diff/360001/components/dom_distiller/core/distilled_page_prefs.cc File components/dom_distiller/core/distilled_page_prefs.cc (right): https://codereview.chromium.org/341563002/diff/360001/components/dom_distiller/core/distilled_page_prefs.cc#newcode40 components/dom_distiller/core/distilled_page_prefs.cc:40: if (new_theme >= Theme::kThemeCount) { On 2014/07/08 22:26:47, nyquist ...
6 years, 5 months ago (2014-07-09 19:42:26 UTC) #33
nyquist
There are also other compile errors, please look at the tryjob logs. https://codereview.chromium.org/341563002/diff/420001/chrome/browser/dom_distiller/dom_distiller_service_factory.h File chrome/browser/dom_distiller/dom_distiller_service_factory.h ...
6 years, 5 months ago (2014-07-09 20:38:32 UTC) #34
smaslo
Still working on try-bot errors. https://codereview.chromium.org/341563002/diff/420001/chrome/browser/dom_distiller/dom_distiller_service_factory.h File chrome/browser/dom_distiller/dom_distiller_service_factory.h (right): https://codereview.chromium.org/341563002/diff/420001/chrome/browser/dom_distiller/dom_distiller_service_factory.h#newcode28 chrome/browser/dom_distiller/dom_distiller_service_factory.h:28: scoped_ptr<DistilledPagePrefs> distilled_page_prefs); On 2014/07/09 ...
6 years, 5 months ago (2014-07-10 17:01:06 UTC) #35
nyquist
https://codereview.chromium.org/341563002/diff/580001/components/dom_distiller/standalone/content_extractor.cc File components/dom_distiller/standalone/content_extractor.cc (right): https://codereview.chromium.org/341563002/diff/580001/components/dom_distiller/standalone/content_extractor.cc#newcode105 components/dom_distiller/standalone/content_extractor.cc:105: scoped_ptr<DistilledPagePrefs>())); I think this needs a preference. The content ...
6 years, 5 months ago (2014-07-11 01:41:05 UTC) #36
smaslo
asargent: Please provide owner approval for chrome/browser/extensions/api/reading_list_private/reading_list_private_apitest.cc blundell: Please provide owner approval for components/pref_registry.gypi TestingPrefServiceSyncable ...
6 years, 5 months ago (2014-07-11 22:37:45 UTC) #37
nyquist
https://codereview.chromium.org/341563002/diff/640001/components/pref_registry.gypi File components/pref_registry.gypi (right): https://codereview.chromium.org/341563002/diff/640001/components/pref_registry.gypi#newcode32 components/pref_registry.gypi:32: '../base/base.gyp:base_prefs_test_support', Local dependencies go first.
6 years, 5 months ago (2014-07-11 23:20:06 UTC) #38
smaslo
https://codereview.chromium.org/341563002/diff/640001/components/pref_registry.gypi File components/pref_registry.gypi (right): https://codereview.chromium.org/341563002/diff/640001/components/pref_registry.gypi#newcode32 components/pref_registry.gypi:32: '../base/base.gyp:base_prefs_test_support', On 2014/07/11 23:20:06, nyquist wrote: > Local dependencies ...
6 years, 5 months ago (2014-07-11 23:26:40 UTC) #39
nyquist
lgtm https://codereview.chromium.org/341563002/diff/660001/components/components_tests.gyp File components/components_tests.gyp (right): https://codereview.chromium.org/341563002/diff/660001/components/components_tests.gyp#newcode736 components/components_tests.gyp:736: 'components.gyp:pref_registry_test_support', Nit: Does this have trailing whitespace?
6 years, 5 months ago (2014-07-14 17:56:00 UTC) #40
asargent_no_longer_on_chrome
chrome/browser/extensions/* lgtm
6 years, 5 months ago (2014-07-14 18:16:27 UTC) #41
blundell
//components/pref_registry.gypi LGTM
6 years, 5 months ago (2014-07-15 06:42:54 UTC) #42
smaslo
The CQ bit was checked by smaslo@chromium.org
6 years, 5 months ago (2014-07-15 14:52:39 UTC) #43
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-status.appspot.com/cq/smaslo@chromium.org/341563002/660001
6 years, 5 months ago (2014-07-15 14:54:25 UTC) #44
commit-bot: I haz the power
FYI, CQ is re-trying this CL (attempt #1). The failing builders are: win8_chromium_rel on tryserver.chromium ...
6 years, 5 months ago (2014-07-15 21:06:44 UTC) #45
commit-bot: I haz the power
Change committed as 283303
6 years, 5 months ago (2014-07-16 00:30:18 UTC) #46
nyquist
6 years, 5 months ago (2014-07-18 17:36:59 UTC) #47
Message was sent while issue was closed.
https://codereview.chromium.org/341563002/diff/660001/components/dom_distille...
File components/dom_distiller/core/css/distilledpage.css (right):

https://codereview.chromium.org/341563002/diff/660001/components/dom_distille...
components/dom_distiller/core/css/distilledpage.css:246: code {
I don't think we want this block.

Powered by Google App Engine
This is Rietveld 408576698