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

Issue 13652010: Add a virtual keyboard webui at chrome://keyboard/ (Closed)

Created:
7 years, 8 months ago by bryeung
Modified:
7 years, 8 months ago
CC:
chromium-reviews, Aaron Boodman, arv+watch_chromium.org, chromium-apps-reviews_chromium.org, bshe, sadrul
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Visibility:
Public.

Description

Add a virtual keyboard webui at chrome://keyboard/ This is just the old virtual keyboard that was removed a couple of years ago, being used as a temporary stand-in. BUG=222801 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194579 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194635 Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=194881

Patch Set 1 #

Total comments: 3

Patch Set 2 : review comments #

Patch Set 3 : moved to src/ui/ #

Total comments: 4

Patch Set 4 : review comments #

Patch Set 5 : fix gyp #

Patch Set 6 : make it link with gold #

Patch Set 7 : rebase #

Patch Set 8 : fix gyp #

Patch Set 9 : whitespace fix to license #

Patch Set 10 : rebase #

Patch Set 11 : build fix #

Patch Set 12 : rebase after revert #

Patch Set 13 : build fix #

Unified diffs Side-by-side diffs Delta from patch set Stats (+1584 lines, -11 lines) Patch
M chrome/browser/extensions/component_loader.h View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M chrome/browser/extensions/component_loader.cc View 1 2 3 4 5 6 7 8 9 10 11 3 chunks +12 lines, -0 lines 0 comments Download
M chrome/browser/extensions/image_loader.cc View 1 2 3 4 5 6 7 8 9 10 11 2 chunks +19 lines, -0 lines 0 comments Download
M chrome/browser/ui/webui/chrome_web_ui_controller_factory.cc View 1 2 2 chunks +4 lines, -0 lines 0 comments Download
M chrome/chrome_browser_extensions.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/chrome_browser_ui.gypi View 1 2 3 4 5 6 7 8 9 1 chunk +2 lines, -0 lines 0 comments Download
M chrome/chrome_repack_resources.gypi View 1 2 3 4 5 6 7 8 9 10 11 12 1 chunk +5 lines, -0 lines 0 comments Download
M chrome/common/extensions/manifest_url_handler.cc View 1 2 2 chunks +7 lines, -0 lines 0 comments Download
M chrome/common/url_constants.h View 1 2 2 chunks +0 lines, -2 lines 0 comments Download
M chrome/common/url_constants.cc View 1 2 2 chunks +0 lines, -2 lines 0 comments Download
M tools/gritsettings/resource_ids View 1 2 1 chunk +3 lines, -2 lines 0 comments Download
A + ui/keyboard/DEPS View 1 2 1 chunk +1 line, -0 lines 0 comments Download
M ui/keyboard/keyboard.gyp View 1 2 3 4 5 6 2 chunks +36 lines, -1 line 0 comments Download
A ui/keyboard/keyboard_constants.h View 1 2 1 chunk +20 lines, -0 lines 0 comments Download
A + ui/keyboard/keyboard_constants.cc View 1 2 1 chunk +3 lines, -4 lines 0 comments Download
A ui/keyboard/keyboard_resources.grd View 1 2 1 chunk +33 lines, -0 lines 0 comments Download
A ui/keyboard/keyboard_ui_controller.h View 1 2 1 chunk +29 lines, -0 lines 0 comments Download
A ui/keyboard/keyboard_ui_controller.cc View 1 2 3 1 chunk +55 lines, -0 lines 0 comments Download
A ui/keyboard/resources/common.js View 1 2 1 chunk +716 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/chevron.svg View 1 2 1 chunk +9 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/del.svg View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/keyboard.svg View 1 2 1 chunk +25 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/mic.svg View 1 2 1 chunk +23 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/ret.svg View 1 2 1 chunk +17 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/shift.svg View 1 2 1 chunk +15 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/shift-down.svg View 1 2 1 chunk +15 lines, -0 lines 0 comments Download
A ui/keyboard/resources/images/tab.svg View 1 2 1 chunk +14 lines, -0 lines 0 comments Download
A ui/keyboard/resources/index.html View 1 2 1 chunk +10 lines, -0 lines 0 comments Download
A ui/keyboard/resources/layout_us.js View 1 2 1 chunk +89 lines, -0 lines 0 comments Download
A ui/keyboard/resources/main.css View 1 2 3 4 5 6 7 8 1 chunk +193 lines, -0 lines 0 comments Download
A ui/keyboard/resources/main.js View 1 2 1 chunk +192 lines, -0 lines 0 comments Download
A ui/keyboard/resources/manifest.json View 1 2 1 chunk +14 lines, -0 lines 0 comments Download

Messages

Total messages: 14 (0 generated)
bryeung
Sadrul: I forget what we discussed. Do the webui files need to move to ui/keyboard/?
7 years, 8 months ago (2013-04-04 21:50:31 UTC) #1
sadrul
On 2013/04/04 21:50:31, bryeung wrote: > Sadrul: I forget what we discussed. Do the webui ...
7 years, 8 months ago (2013-04-04 22:13:43 UTC) #2
bshe
https://codereview.chromium.org/13652010/diff/1/chrome/browser/resources/virtual_keyboard/layout_us.js File chrome/browser/resources/virtual_keyboard/layout_us.js (right): https://codereview.chromium.org/13652010/diff/1/chrome/browser/resources/virtual_keyboard/layout_us.js#newcode16 chrome/browser/resources/virtual_keyboard/layout_us.js:16: new SpecialKey('space', ' ', 'Spacebar'), drive by: this is ...
7 years, 8 months ago (2013-04-04 23:55:25 UTC) #3
bryeung
Good catches: thanks Biao! https://codereview.chromium.org/13652010/diff/1/chrome/browser/resources/virtual_keyboard/layout_us.js File chrome/browser/resources/virtual_keyboard/layout_us.js (right): https://codereview.chromium.org/13652010/diff/1/chrome/browser/resources/virtual_keyboard/layout_us.js#newcode80 chrome/browser/resources/virtual_keyboard/layout_us.js:80: new SpecialKey('space', ' ', 'Spacebar'), ...
7 years, 8 months ago (2013-04-05 17:17:46 UTC) #4
bryeung
Sadrul: I've added you back as a reviewer now that this is moved to src/ui. ...
7 years, 8 months ago (2013-04-14 15:46:56 UTC) #5
bryeung
+asargent: for extensions portion
7 years, 8 months ago (2013-04-14 15:47:49 UTC) #6
sadrul
I mainly looked at the .cc/.h files in ui/keyboard/. LGTM https://codereview.chromium.org/13652010/diff/20001/chrome/browser/extensions/component_loader.cc File chrome/browser/extensions/component_loader.cc (right): https://codereview.chromium.org/13652010/diff/20001/chrome/browser/extensions/component_loader.cc#newcode340 ...
7 years, 8 months ago (2013-04-15 17:17:27 UTC) #7
bryeung
https://codereview.chromium.org/13652010/diff/20001/chrome/browser/extensions/component_loader.cc File chrome/browser/extensions/component_loader.cc (right): https://codereview.chromium.org/13652010/diff/20001/chrome/browser/extensions/component_loader.cc#newcode340 chrome/browser/extensions/component_loader.cc:340: base::FilePath(FILE_PATH_LITERAL("keyboard"))); On 2013/04/15 17:17:27, sadrul wrote: > Did you ...
7 years, 8 months ago (2013-04-15 17:50:56 UTC) #8
asargent_no_longer_on_chrome
extensions parts lgtm
7 years, 8 months ago (2013-04-15 18:47:38 UTC) #9
bryeung
+ben for OWNERS
7 years, 8 months ago (2013-04-16 14:09:19 UTC) #10
Ben Goodger (Google)
lgtm
7 years, 8 months ago (2013-04-16 16:37:30 UTC) #11
bryeung
Committed patchset #9 manually as r194579 (presubmit successful).
7 years, 8 months ago (2013-04-17 12:32:28 UTC) #12
bryeung
Committed patchset #11 manually as r194635 (presubmit successful).
7 years, 8 months ago (2013-04-17 17:58:29 UTC) #13
bryeung
7 years, 8 months ago (2013-04-18 11:24:05 UTC) #14
Message was sent while issue was closed.
Committed patchset #13 manually as r194881 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698