1. ed2b100 Move external protocol handling from TC. by [email protected] · 14 years ago
  2. 55ce33071 Small cleanup to move ExtensionFunctionDispatcher to use WeakPtr instead of Peer. by [email protected] · 14 years ago
  3. bcde748 Add hideKeyboard API to chrome.experimental.input. by [email protected] · 14 years ago
  4. c6e584c Private API for extensions like ssh-client that need access to websocket-to-tcp proxy. by [email protected] · 14 years ago
  5. f1852b5 Add 2 Extension APIs for handwriting: experimental.input.sendHandritingStroke and cancelHandWriting by [email protected] · 14 years ago
  6. c5dbef0 Re-land r84928: Move EFD to ExtensionTabHelper. by [email protected] · 14 years ago
  7. 16095bf Revert "Re-land r84928: Move ExtensionFunctionDispatcher to" by [email protected] · 14 years ago
  8. 4bae577 Re-land r84928: Move ExtensionFunctionDispatcher to ExtensionTabHelper. by [email protected] · 14 years ago
  9. 41999c7 Revert "Revert "Looks like this introduced leaks in sync ui tests. Sigh."" by [email protected] · 14 years ago
  10. 7600428c Revert "Looks like this introduced leaks in sync ui tests. Sigh." by [email protected] · 14 years ago
  11. 474a38f Looks like this introduced leaks in sync ui tests. Sigh. by [email protected] · 14 years ago
  12. 52836b6 Move ExtensionFunctionDispatcher to ExtensionTabHelper. This by [email protected] · 14 years ago
  13. 27072cad Add IME UI related extension API. by [email protected] · 14 years ago
  14. f5d9bd14 Remove unused experimental.clipboard APIs. by [email protected] · 14 years ago
  15. b35b26b3 Browser::Type cleanup. by [email protected] · 14 years ago
  16. 71c8baff Revert 84095 - Add IME UI related extension API. by [email protected] · 14 years ago
  17. 14e8f8c7 Add IME UI related extension API. by [email protected] · 14 years ago
  18. c8d407e Clean up ExtensionService shutdown and related notifications. by [email protected] · 14 years ago
  19. afd1e52 Move UserMetrics to content. by [email protected] · 14 years ago
  20. f82d57b5 Revert "Revert 83168 - Revert "Revert 83100 - Remove weird dependency on extensions from webui.Re-plumb extension request messages in a more sane way.Before, each RVH had ProcessWebUIMessage(), which wasserving as a manual way of plumbing both WebUI andextension messages to the right place, even though onlya few RVHD responded to either message.Instead of this, we now just teach more of the stack howto handle IPC messages in general, and delegate them upthrough the stack, giving each layer a chance to handlethem if it knows how.The result is simpler and smaller:179 insertions(+), 252 deletions(-)BUG=80311Review URL: http://codereview.chromium.org/6901021"This reverts commit 643b280cedd9f0b76948686f39f50f295aba362f.TBR=mpcomplete@chromium.org" by [email protected] · 14 years ago
  21. 16544bd Revert 83168 - Revert "Revert 83100 - Remove weird dependency on extensions from webui.Re-plumb extension request messages in a more sane way.Before, each RVH had ProcessWebUIMessage(), which wasserving as a manual way of plumbing both WebUI andextension messages to the right place, even though onlya few RVHD responded to either message.Instead of this, we now just teach more of the stack howto handle IPC messages in general, and delegate them upthrough the stack, giving each layer a chance to handlethem if it knows how.The result is simpler and smaller:179 insertions(+), 252 deletions(-)BUG=80311Review URL: http://codereview.chromium.org/6901021"This reverts commit 643b280cedd9f0b76948686f39f50f295aba362f.TBR=mpcomplete@chromium.org by [email protected] · 14 years ago
  22. ef9df92 Revert "Revert 83100 - Remove weird dependency on extensions from webui.Re-plumb extension request messages in a more sane way.Before, each RVH had ProcessWebUIMessage(), which wasserving as a manual way of plumbing both WebUI andextension messages to the right place, even though onlya few RVHD responded to either message.Instead of this, we now just teach more of the stack howto handle IPC messages in general, and delegate them upthrough the stack, giving each layer a chance to handlethem if it knows how.The result is simpler and smaller:179 insertions(+), 252 deletions(-)BUG=80311Review URL: http://codereview.chromium.org/6901021" by [email protected] · 14 years ago
  23. 39755c3 Revert 83100 - Remove weird dependency on extensions from webui.Re-plumb extension request messages in a more sane way.Before, each RVH had ProcessWebUIMessage(), which wasserving as a manual way of plumbing both WebUI andextension messages to the right place, even though onlya few RVHD responded to either message.Instead of this, we now just teach more of the stack howto handle IPC messages in general, and delegate them upthrough the stack, giving each layer a chance to handlethem if it knows how.The result is simpler and smaller:179 insertions(+), 252 deletions(-)BUG=80311Review URL: http://codereview.chromium.org/6901021 by [email protected] · 14 years ago
  24. 1be4da9 Remove weird dependency on extensions from webui. by [email protected] · 14 years ago
  25. 912aee1e0 Reduce static data in ExtensionProcessBindings. Some was not by [email protected] · 14 years ago
  26. 7c158cca Support TOUCH_ICON in FaviconSource by [email protected] · 14 years ago
  27. 94bda20 Wired existing media player code with the new file browser. Added a new private method to view selected files: by [email protected] · 14 years ago
  28. b6b805e9 New fileBrowserPrivate and fileHandler APIs added + plus magic needed to safely hand over access to local file system elements from content extension to 3rd party extension. by [email protected] · 14 years ago
  29. 99b3700 Revert 81865 - New fileBrowserPrivate and fileHandler APIs added + plus magic needed to safely hand over access to local file system elements from content extension to 3rd party extension.As agreed with aa@ and asargent@, this new API defines following event:chrome.fileHandler.onExecute.addListener(function(id, file_entries) {}This event is invoked when user selects files in ChromeOS file browser. The extension needs to register itself as file content hanlder with following manifest changes: ... "file_browser_actions": [ { "id" : "ActionIdentifier", "default_title" : "Action title", "default_icon" : "icon.png", "file_filters" : [ "filesystem:*.jpeg", ... ] } ... ], ...BUG=chromium-os:11996TEST=ExtensionApiTest.FileBrowserTest, ExtensionManifestTest.FileBrowserActionsReview URL: http://codereview.chromium.org/6749021 by [email protected] · 14 years ago
  30. 76066e5 New fileBrowserPrivate and fileHandler APIs added + plus magic needed to safely hand over access to local file system elements from content extension to 3rd party extension. by [email protected] · 14 years ago
  31. 00070c73 Cleanup: Update a bunch of files to the new location of browser_window.h. Part 1/1. by [email protected] · 14 years ago
  32. ac31010 This is downstream fix for chrome.experimental.debugger API. by [email protected] · 14 years ago
  33. 9d4c2c5 Support for fileBrowserPrivate extension file selection apis. by [email protected] · 14 years ago
  34. 71b73f0 Cleanup: Update a bunch of files to the new location of browser_list.h. Part 1/3. by [email protected] · 14 years ago
  35. 5349ac6d Add a webstore install method that lets us prompt the user before downloading. by [email protected] · 14 years ago
  36. 553602e1 Move dispatching and sending of the last extension specific messages out of TabContents and RenderView.I added a TabContents::Registrar helper class for allowing classing to temporarily observe a TabContents. This allows them to easily and safetly filter IPC messages. I used this for ExecuteCodeInTabFunction. by [email protected] · 14 years ago
  37. 6cfef4d Revert 80026 - Support for fileBrowserPrivate extension file selection apis. by [email protected] · 14 years ago
  38. 4206ebc Support for fileBrowserPrivate extension file selection apis. by [email protected] · 14 years ago
  39. ff31a8a DevTools: make extensions more user-friendly. by [email protected] · 14 years ago
  40. 44c49c9 Move extension messages to their own file and add a RenderViewObserver to start moving the extension code out of RenderView. by [email protected] · 14 years ago
  41. 3b63f8f4 Move some files from base to base/memory. by [email protected] · 14 years ago
  42. 55d9bed Wired local file system support for File API. The local file system provider currently exists for ChromeOS builds only. by [email protected] · 14 years ago
  43. 61b55b6 Added extensions API to provide customization values. by [email protected] · 14 years ago
  44. 91ba331 Extensions: expose raw debugging protocol via extension API. by [email protected] · 14 years ago
  45. 4dd5793 Move the remaining files in chrome\common to content\common. by [email protected] · 14 years ago
  46. f16039d2 fav icon -> favicon. Pass 12/12: all the rest by [email protected] · 14 years ago
  47. 16835e6 fav icon -> favicon. Pass 11: rest of chrome/browser/ui by [email protected] · 14 years ago
  48. c7c401d Exposing extension preferences via the `chrome.extension` API. by [email protected] · 14 years ago
  49. 3e334269 Use PreferenceTransformerInterface in extension preference APIs. by [email protected] · 14 years ago
  50. 05cc4e7 Implement blocking for webRequest.onBeforeRequest extension event. by [email protected] · 14 years ago
  51. f20d733 Update a bunch of files to the new location of notification files. by [email protected] · 14 years ago
  52. 5de63471 Get rid of a bunch of includes to old locations of headers. by [email protected] · 14 years ago
  53. fd42ac30f WebUI: Move the remaining files from chrome/browser/webui to chrome/browser/ui/webui. Final Part. by [email protected] · 14 years ago
  54. 63a8051 Remove RemoveCustomProxySettingsFunction as it is substituted by clear of preferences api by [email protected] · 14 years ago
  55. c433bcb Implementation of 'clear' for preference settings in extension preference api by [email protected] · 14 years ago
  56. ccfdfbdf Migrated Proxy Settings API to mechanisms of Content Settings API by [email protected] · 14 years ago
  57. 598bbcc Implement experimental.contentSettings.misc.blockThirdPartyCookies. by [email protected] · 14 years ago
  58. 6599259 WebUI: Fix the naming of some files and its classes. by [email protected] · 14 years ago
  59. 42b79565 WebUI: Move chrome/browser/dom_ui/ to chrome/browser/webui/. by [email protected] · 14 years ago
  60. 2f69b38 Reland "WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5." by [email protected] · 14 years ago
  61. 2bb5130 Revert 75453 - WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5. by [email protected] · 14 years ago
  62. 33d6752e WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5. by [email protected] · 14 years ago
  63. c41fe66 Retrying r74887: Add plumbing to webRequest API to support event filtering. by [email protected] · 14 years ago
  64. 1132a950 Revert 74887 - Add plumbing to webRequest API to support event filtering. by [email protected] · 14 years ago
  65. 00023ad Add plumbing to webRequest API to support event filtering. by [email protected] · 14 years ago
  66. 9e92f7c Removing the experimental Chrome extension popup API. This API will not be added to the set of available extension APIs. by [email protected] · 14 years ago
  67. 18f4ea5 Implementation of getCurrentProxySettings for proxy settings API. by [email protected] · 14 years ago
  68. 248ce19 Attempt 3 at: Splits ChromeURLDataManager into 2 chunks: by [email protected] · 14 years ago
  69. 6c988198 Revert 74340 - Attempt 2 at: Splits ChromeURLDataManager into 2 chunks: by [email protected] · 14 years ago
  70. f37bff4 Attempt 2 at: Splits ChromeURLDataManager into 2 chunks: by [email protected] · 14 years ago
  71. 71f381a Revert 74292 - Splits ChromeURLDataManager into 2 chunks: by [email protected] · 14 years ago
  72. 0983c7a0 Splits ChromeURLDataManager into 2 chunks: by [email protected] · 14 years ago
  73. 8f9d4eb WebUI: Rename ExtensionDOMUI to ExtensionWebUI. by [email protected] · 14 years ago
  74. 7764170 Separate proxy settings for Incognito mode. by [email protected] · 14 years ago
  75. e0813a39 WebUI: Change DOMUI to WebUI in more two class names. by [email protected] · 14 years ago
  76. e93d2d0 Added new methods to chrome.experimental.metrics to enable or disable sending the crash reports and UMA to Google. by [email protected] · 14 years ago
  77. a4a38c1 Extend the TTS extension API to allow an extension to register itself as by [email protected] · 14 years ago
  78. c6602763 Add stats for figuring out how often we kill processes because of malformed IPCs or unexpected values. by [email protected] · 14 years ago
  79. 9006b115 Cleanup: Remove unneeded includes of notification_service.h in other headers. by [email protected] · 15 years ago
  80. eaa7dd18 Rename ExtensionsService to ExtensionService. by [email protected] · 15 years ago
  81. 8e8bb6d Rename all methods accessing Singleton<T> as GetInstance(). by [email protected] · 15 years ago
  82. d3c6c0d7 Add a new GetInstance() method for singleton classes used in chrome/browser files. by [email protected] · 15 years ago
  83. 8ecad5e Move: by [email protected] · 15 years ago
  84. 1bead071 Add an API for extensions to set the description text for the default by [email protected] · 15 years ago
  85. a65882c Allow an extension to dynamically set extra data in its update URL, in order by [email protected] · 15 years ago
  86. b1f04cc Split the private webstore install API into two parts. by [email protected] · 15 years ago
  87. e78543c Add api method to get an installed extension by ID. by [email protected] · 15 years ago
  88. 2a8f24e Fix some UI issues with omnibox extensions in incognito. by [email protected] · 15 years ago
  89. 9adb969 Part 3 of immutable Extension refactor. by [email protected] · 15 years ago
  90. a7ab1b78 Part 2 of extension event refactor. by [email protected] · 15 years ago
  91. 8a661f8 Expands the chrome.experimental.processes extension API. by [email protected] · 15 years ago
  92. 761e716 Pass test server port to javascript part of extensions API tests. by [email protected] · 15 years ago
  93. d688559 Add a promptBrowserLogin method to webstorePrivate extension API by [email protected] · 15 years ago
  94. ca4b5fa3 Rename ChromeThread to BrowserThread Part10: by [email protected] · 15 years ago
  95. e558ff8 Add a launchApp method to extension management API. by [email protected] · 15 years ago
  96. 246c05f Excempt certain extension functions from module permission check. by [email protected] · 15 years ago
  97. 22aa4b6 Relanding 3149027. TBR=dmazzoni,chaitanyag BUG=none. TEST=none. by [email protected] · 15 years ago
  98. 63cda0c Private API for web store to get sync login and set store login information. by [email protected] · 15 years ago
  99. bc535ee5 Add support for a "split" incognito behavior for extensions. by [email protected] · 15 years ago
  100. 583d45c1 Reland r57788 - Expose Extension Bindings to Component Applications by [email protected] · 15 years ago