1. 81ad179 webui: rename "DialogClose" to "dialogClose" to match other webui messages. by [email protected] · 11 years ago
  2. 4b3006f Update uses of Value in extensions/, google_apis/, gpu/, media/, net/, printing/, remoting/, rlz/, sync/, ui/ to use the base:: namespace. by [email protected] · 12 years ago
  3. d701be8 web_dialogs: Remove unused notification_service.h include. by [email protected] · 12 years ago
  4. 9d6c803b Fix the issue introduced by hooking window.onbeforeunload in WebDialogView which breaks the way WebDialogUI closing the dialog via "DialogClose" message from js. This is broken by my svn landed yesterday. by [email protected] · 13 years ago
  5. 36a22c4 Kill PropertyBag, switch WebContents to SupportsUserData. by [email protected] · 13 years ago
  6. 20c07f8e Move the web dialogs code to src/ui/web_dialogs from src/chrome by [email protected] · 13 years ago[Renamed (80%) from chrome/browser/ui/webui/web_dialog_ui.cc]
  7. ad4cccc Remove chrome::NOTIFICATION_WEB_DIALOG_SHOWN. by [email protected] · 13 years ago
  8. 92149569 webui: Extract WebDialogDelegate into its own header file. by [email protected] · 13 years ago
  9. 7df3575 Rename HTML_DIALOG to WEB_DIALOG. by [email protected] · 13 years ago
  10. 5835871a Web-ify a bunch of these names. I am going to move some of the framework code here down to ui/web_dialogs in a future cl, hence the namespaces. by [email protected] · 13 years ago[Renamed (74%) from chrome/browser/ui/webui/html_dialog_ui.cc]
  11. 875c47f WebUI TaskManager: Add method to set minimum window size on HTMLDialog. by [email protected] · 13 years ago
  12. 28a948d7 Revert 127660 - WebUI TaskManager: Add method to set minimum window size on HTMLDialog. by [email protected] · 13 years ago
  13. c355431d WebUI TaskManager: Add method to set minimum window size on HTMLDialog. by [email protected] · 13 years ago
  14. eaabba2 Move Render(View|Widget)Host and associated classes to content namespace. by [email protected] · 13 years ago
  15. 9c1662b Move RenderWidgetHost and RenderViewHost interfaces to their own files. by [email protected] · 13 years ago
  16. 35be7ec Move ContextMenuParams struct from webkit/glue to content/public/common. The reasons are: by [email protected] · 14 years ago
  17. 6936ace Add a blocking version of the sync promo dialog by [email protected] · 14 years ago
  18. 01ec4ec Switch chrome code to use content::WebUI interface instead of WebUI concrete class. The latter will be renamed to WebUIImpl in a followup change. This completes hiding WebUI from chrome code, and now we can block it through DEPS. by [email protected] · 14 years ago
  19. c63cedf2 Make WebUI objects not derive from WebUI. WebUI objects own the controller. This is the ownership model since otherwise we'd have to make the interface class delete it, which is better avoided since it's supposed to be an interface. The controller has a pointer to the WebUI object. by [email protected] · 14 years ago
  20. e14c95912 Start splitting out WebUI into an implementation class and an interface that each page implements. This first patch moves the virtual functions in WebUI that were overridden by pages into a separate interface, content::WebUIController. by [email protected] · 14 years ago
  21. 21e6caf8 Get rid of the ChromeWebUI class and just make all the classes in chrome derive directly from WebUI. I've left the header behind since it now just contains the static functions for MoreWebUI. by [email protected] · 14 years ago
  22. 26e2632a Move WebUIMessageHandler to its own file in the public directory and put it in the content namespace. by [email protected] · 14 years ago
  23. 0ec4898e Replace WebUI::tab_contents() with web_contents() and switch all users to use web_contents.h instead of tab_contents.h. In a few cases some of these files used functions that needed a TabContents, so I switched them as well. by [email protected] · 14 years ago
  24. 46adf7ff Simplify WebUIMessageHandler a bit in preparation for moving it into the Content API: by [email protected] · 14 years ago
  25. 6934a70 Start creating the content::WebPage interface around TabContents. This is just the start of moving 4 very commonly used unix_hacker functions into CamelCase. I've added the interface with just these methods, it's not actually used yet. by [email protected] · 14 years ago
  26. 5bdd40e0 Replace TOUCH_UI condition in WebUI with dynamic flag. by [email protected] · 14 years ago
  27. 1582387e Allow WebUI Tests to use preLoad in HtmlDialogUI. by [email protected] · 14 years ago
  28. 45644f6 Move PropertyBag to base. Originally this was in chrome\common because only chrome used it. Now that chrome and content use it, and that we want to only expose interface through the content API, this belongs in base. by [email protected] · 14 years ago
  29. 6de0fd1d Allow linker initialization of lazy instance by [email protected] · 14 years ago
  30. 9509f61 Fix WebUI certificate viewer browsertests on AURA. by [email protected] · 14 years ago
  31. ad50def5 Make NotificationService an interface in the content namespace, and switch callers to use it. Move the implementation to content/browser. Stop creating it in all child processes since it's only used in the browser. by [email protected] · 14 years ago
  32. 6c2381d Move NotificationObserver, NotificationSource, and NotificationDetails to content/public/browser. by [email protected] · 14 years ago
  33. e091df8 Move BindingsPolicy enum to content\public\common and put it in the content namespace. I've also renamed the value names to match the style that we use in the WebKit API (i.e. all values in an enum start with the enum's name) since it's more readable. As we move other enums to public we should switch them over as well. by [email protected] · 14 years ago
  34. 89121d6 [web-ui] Migrate RegisterMessageCallback usage to base::bind(). by [email protected] · 14 years ago
  35. 8be15fe Revert 103785 - [web-ui] Migrate callbacks to base::Bind. by [email protected] · 14 years ago
  36. 04c0431 [web-ui] Migrate callbacks to base::Bind. by [email protected] · 14 years ago
  37. a44c107f Adds testing infrastructure to web_ui_browsertest to support testing HtmlDialogs. by [email protected] · 14 years ago
  38. 8befa1a Add --use-more-webui runtime flag to toggle WebUI replacements for native dialogs (Patch set 1 Reverts revert of http://codereview.chromium.org/7670041/) by [email protected] · 14 years ago
  39. 5de10b5d Revert 101785 - Add --use-more-webui runtime flag to toggle WebUI replacements for native dialogs. by [email protected] · 14 years ago
  40. bfc2071 Add --use-more-webui runtime flag to toggle WebUI replacements for native dialogs. by [email protected] · 14 years ago
  41. 5378cba Revert 101581 - Add --use-more-webui runtime flag to toggle WebUI replacements for native dialogs. by [email protected] · 14 years ago
  42. 5fdc1f1 Add --use-more-webui runtime flag to toggle WebUI replacements for native dialogs. by [email protected] · 14 years ago
  43. b21b3f5 Remove unused HtmlDialogUIDelegate::OnWindowClosed() by [email protected] · 14 years ago
  44. 4d241a5 Removes force_bookmark_bar_visible_ from WebUI and puts it in by [email protected] · 14 years ago
  45. 42809ae7 CrOS - Fix file selection dialog not respawning after closing with esc (3) by [email protected] · 14 years ago
  46. 9966325b Remove the last Chrome dependencies from renderer, and enforce no more includes through DEPS. I also added DEPS checking for gpu/plugin/worker directories as well. I moved the Chrome specific browser tests to the chrome directory, and removed render_widget_unittest since it didn't seem to be testing much (there are tests that test it much more fully). I had to move bindings_policy.h, which ideally would be split into separate pieces so that the content layer only has to know about the content bindings. Given that it's basically an enum, I moved the whole file now since it's used in a lot of places, and the value of turning on DEPS checking is really high. by [email protected] · 14 years ago
  47. 3655b9bf Move web_ui_util.* to chrome/ from content/ by [email protected] · 14 years ago
  48. 036056a3 Remove web_ui_util helper functions. by [email protected] · 14 years ago
  49. a035dfda Get rid of temporary render_view_host.h. by [email protected] · 14 years ago
  50. 265a149 WebUI: Move more files from chrome/browser/webui to chrome/browser/ui/webui. by [email protected] · 14 years ago[Renamed (98%) from chrome/browser/webui/html_dialog_ui.cc]
  51. 67fc039 WebUI: Move the core files of WebUI from chrome/browser/webui to content/browser/webui. by [email protected] · 14 years ago
  52. c47fd22 Revert 75911 - Remove web_ui_util helper functions. by [email protected] · 15 years ago
  53. 90d3120 Remove web_ui_util helper functions. by [email protected] · 15 years ago
  54. 2f69b38 Reland "WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5." by [email protected] · 15 years ago[Renamed (98%) from chrome/browser/dom_ui/html_dialog_ui.cc]
  55. 2bb5130 Revert 75453 - WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5. by [email protected] · 15 years ago[Renamed (98%) from chrome/browser/webui/html_dialog_ui.cc]
  56. 33d6752e WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 5. by [email protected] · 15 years ago[Renamed (98%) from chrome/browser/dom_ui/html_dialog_ui.cc]
  57. 7e3abea4 WebUI: Move more files from chrome/browser/dom_ui to chrome/browser/webui. Part 3. by [email protected] · 15 years ago
  58. c09163a WebUI: Get rid of more references to dom_ui and DOM_UI. by [email protected] · 15 years ago
  59. d098079 WebUI: Get rid of more references to DOMUI in the rest of the directories. by [email protected] · 15 years ago
  60. 0f42477a WebUI: Get rid of more referecens to DOMUI. Part 2. by [email protected] · 15 years ago
  61. 36e1217 WebUI: Rename DOMMessageHandler to WebMessageHandler. by [email protected] · 15 years ago
  62. e011291 WebUI: Change all references from "DOM UI" to "Web UI". by [email protected] · 15 years ago
  63. e82abf3 WebUI: Rename namespace dom_ui_util to web_ui_util. by [email protected] · 15 years ago
  64. fee46a8 This is a continuation of http://codereview.chromium.org/5519016/, adds a new GetInstance() method for remaining files with singleton classes under chrome/browser. by [email protected] · 15 years ago
  65. 9a80e22 Turn off context menu for file browser dialogs. by [email protected] · 15 years ago
  66. 88942a2 DOM UI: Change DOMMessageHandler callback arg type to ListValue. by [email protected] · 15 years ago
  67. 73852b8f [Large; Chromium OS] Work to host the cloud print dialog when built by [email protected] · 15 years ago
  68. 2041cf34 Pulled out Callback code into base/callback.h. This is the first step towards redoing the Callback interfaces. by [email protected] · 16 years ago
  69. 2bc2de6 Take two for http://codereview.chromium.org/131094 by [email protected] · 16 years ago
  70. 8537054 Revert cl 19359 due to browser_tests timeout. by [email protected] · 16 years ago
  71. 5d282b1 Add a 'RegisterMessages' function to DOMMessageHandler to make it easy to construct these objects by deferring the DOMUI dependency to the init / "Attach" step. by [email protected] · 16 years ago
  72. 57c6a65 Replace all occurrances of WebContents with TabContents. by [email protected] · 16 years ago
  73. 9be096e Don't delete the DOM UI property for the callback when the DOM UI is torn down. by [email protected] · 16 years ago
  74. 4acc19a6 Move HTML dialogs out of their own tab contents type. Moved functions to new by [email protected] · 16 years ago