1. c2e66e1 Move each permission classes to its own files in extensions/permissions and rename classes from ExtensionPermission* to extensions::Permission* by [email protected] · 13 years ago
  2. ff51c40 Simplify overriding ShouldExpire() a bit by allowing classes to override ShouldExpireInternal() instead, which fits most uses. by [email protected] · 13 years ago
  3. c715ce9 Upstream Geolocation global enable/disable preference. by [email protected] · 13 years ago
  4. f639faa TabContentsWrapper -> TabContents, part 14. by [email protected] · 13 years ago
  5. 299d7f1 Get rid of the RenderViewType concept in content, since it was only used by Chrome. Store the enum value in the WebContents' property bag. by [email protected] · 13 years ago
  6. 1c321ee Move Extension into extensions namespace by [email protected] · 13 years ago
  7. c8160f2 Remove VIEW_TYPE_WEB_CONTENTS and make default view type INVALID. by [email protected] · 13 years ago
  8. 0932b30c TabContents -> WebContentsImpl, part 18. by [email protected] · 13 years ago
  9. e018d3b TabContents -> WebContentsImpl, part 15. by [email protected] · 13 years ago
  10. a8536bc Remove infobar from helper list before notifying observers. by [email protected] · 13 years ago
  11. bfd9287 Show queued geolocation InfoBars when InfoBar is hidden. by [email protected] · 13 years ago
  12. 19242b4 Revert 128467 - Show queued geolocation InfoBars when InfoBar is hidden. by [email protected] · 13 years ago
  13. 05f2b7b Show queued geolocation InfoBars when InfoBar is hidden. by [email protected] · 13 years ago
  14. 9c1662b Move RenderWidgetHost and RenderViewHost interfaces to their own files. by [email protected] · 13 years ago
  15. 810ddc5 Hide geolocation_provider.h from chrome, and move geolocation_permission_context.h to content\public and into the content namespace. by [email protected] · 13 years ago
  16. ef9572e Get rid of a bunch of tab_contents.h includes from chrome. These are all trivial changes to use WebContents instead of TabContents. by [email protected] · 13 years ago
  17. 10f417c5 Rename NavigationController to NavigationControllerImpl and put it into the content namespace. Also make all users of content::NavigationController interface use the "using" keyword so they don't have to put content:: everywhere (similar to other Content API and WebKit API classes). by [email protected] · 13 years ago
  18. ad23a09 Convert a few methods in NavigationController to return a content::NavigationEntry, in preparation for creating an interface around NavigationController. by [email protected] · 13 years ago
  19. e5d549d Move the PageNavigator interface and GlobalRequestID struct to content\public and put them in the content namespace. Make PageNavigator use WebContents instead of TabContents. While I'm touching all the callers, I've removed the deprecated PageNavigator function and converted users to the new one. by [email protected] · 13 years ago
  20. d583e3f2 Move FaviconStatus and SSLStatus out of NavigationEntry into their own files in content/public and in the content namespace. I've also made them structs instead of classes. This was because I didn't want to wrap them with Content API for what were really a collection of member variables. The one exception was SSLStatus::content_status which had helper functions around it to set and get the bitfield. Each of the two setter helpers were only called in one non-test code, and read in a few places, so I just converted them to do it directly. by [email protected] · 13 years ago
  21. fbe17c8a Remove PrefService::ScheduleSavePersistentPrefs and change SavePersistentPrefs calls to CommitPendingWrites. by [email protected] · 13 years ago
  22. ea049a0 Convert a bunch of WebContentsObservers to use web_contents() instead of tab_contents(), as well as all the dependent code. by [email protected] · 13 years ago
  23. 36fc039 Create a Content API around NavigationEntry that's in content/public/browser. NavigationEntry will be renamed to NavigationEntryImpl in a later change. It now derives from content::NavigationEntry. Most of this change is changing unix_hacker functions to CamelCase and updating callers. by [email protected] · 13 years ago
  24. 26b5e32 Change most of the methods of WebContentsObserver to take a content::WebContents instead of a TabContents, and update all the dependent code. by [email protected] · 13 years ago
  25. 5b96836f Move navigation_details.h to content/public/browser. by [email protected] · 13 years ago
  26. f5fa20e Revert 115346. The change didn't break anything, the test was faulty. Will disable in a followup. - Revert r115276, it broke PanelDownloadTest.Download in interactive_ui_tests by [email protected] · 13 years ago
  27. 10b833e Revert r115276, it broke PanelDownloadTest.Download in interactive_ui_tests by [email protected] · 13 years ago
  28. 69cda65 Rename TabContents::controller() to GetController and put it into the WebContents namespace. by [email protected] · 14 years ago
  29. 615d88f Move/replace/rename URL-based extension getters from ExtensionService to/in ExtensionSet. by [email protected] · 14 years ago
  30. d5639f79 Geolocation InfoBar sometimes doesn't expire when navigating back. by [email protected] · 14 years ago
  31. 138d966c Hide geolocation_messages.h from chrome. It was only used in a test. Instead of having the GeolocationPermissionContext implementation have to call a static method in the interface, give it a callback when requesting permission. That way in tests we can just give a different callback. Also removed two trivial includes in this change. by [email protected] · 14 years ago
  32. 952a68e Have ExtensionHost use TabContents instead of RenderViewHost. Try #3. by [email protected] · 14 years ago
  33. 6f37144 Extract a ProcessMap class from ExtensionProcessManager. This is a dumb data class that can be used on both the IO and UI threads to test extension/process associations. by [email protected] · 14 years ago
  34. 631bb74 Move BrowserThread to content namespace. by [email protected] · 14 years ago
  35. c38831a1 Split BrowserThread into public API and private implementation, step 1. by [email protected] · 14 years ago
  36. 86ab86b Move notification_source from content/common to content/browser/public and put it into the content namespace. by [email protected] · 14 years ago
  37. 0d6e9bd Move content_notification_types.h from content\common to content\public\browser. I dropped the "content" from the name to match other files whose chrome version adds a "chrome_" prefix. I also moved it to the browser directory since notifications are only used in the browser process. I will move the other notification files in future changes. by [email protected] · 14 years ago
  38. 2905f74 Move PageTransition into content namespace. While I'm touching all these files, I've also updated it to use the enum naming convention in the Content API. by [email protected] · 14 years ago
  39. 81b14e7 base::Bind: Cleanups in geolocation/. by [email protected] · 14 years ago
  40. 86a90118 Lazily save preferences after geolocation infobar authorisation. by [email protected] · 14 years ago
  41. 95a33ed6 Move infobar handling to a tab helper. by [email protected] · 14 years ago
  42. 7e20412 Move infobar handling to a tab helper, part 1. by [email protected] · 14 years ago
  43. aa1834c Revert 99187 (speculative revert for ProfileSyncServiceSessionTest.FailModelAssociation on 10.5) by [email protected] · 14 years ago
  44. 2f93641 Move infobar handling to a tab helper, part 1. by [email protected] · 14 years ago
  45. 87fa8441 Migrate geolocation settings to host content settings map and remove the geolocation settings map. by [email protected] · 14 years ago
  46. 8f3a836 Unify infobars' link-opening behavior to respect user-requested dispositions and append the Google locale param (since all these links are opening Google pages). by [email protected] · 14 years ago
  47. 9f507a90 Keep a pointer to the owning TabContents on InfoBarDelegates, clearing it when they're no longer owned, so that if they wish to close themselves they can do so safely. by [email protected] · 14 years ago
  48. 056ad2a Use process-per-app-instance for hosted apps without background permission. by [email protected] · 14 years ago
  49. 43211582 Moving notification types which are chrome specific to a new header file chrome_notification_types.h. by [email protected] · 14 years ago
  50. 70043b4 Using new larger icons added earlier (http://codereview.chromium.org/7304006/) by [email protected] · 14 years ago
  51. b797b3d Try to bandaid leaks due to TabContentsWrapper not force-closing all InfoBarDelegates on shutdown. The real fix will come when changing to the newer ownership model, when TCW can CloseSoon() Infobars directly, but for now, manually close things in a couple places. by [email protected] · 14 years ago
  52. 8f28ba3b3 Make ConfirmInfoBarDelegate::GetLinkText() const. by [email protected] · 14 years ago
  53. 0d3e4a2 Start refractoring extension permissions into ExtensionPermissionSet. by [email protected] · 14 years ago
  54. c476e63 Split out abstract interface from GeolocationPermissionContext by [email protected] · 14 years ago[Renamed (94%) from chrome/browser/geolocation/geolocation_permission_context.cc]
  55. 7abc9529 Move the little infobar code from TabContents to TabContentsWrapper. by [email protected] · 14 years ago
  56. 699ea7e Move TabSpecificContentSettings to TabContentWrapper. by [email protected] · 14 years ago
  57. 3c30b80 Revert 85278 - Move TabSpecificContentSettings to TabContentWrapper. by [email protected] · 14 years ago
  58. 98f24e9d Move TabSpecificContentSettings to TabContentWrapper. by [email protected] · 14 years ago
  59. 9a611a9 More work on removing content settings code from src\content. by [email protected] · 14 years ago
  60. e3c31d27 Replace the virtual InfoBarDelegate::InfoBarClosed() function with a non-virtual one. This is a step along the way to killing it entirely. This also adds a lot of OVERRIDE markers and does some other cleanup in a few places. by [email protected] · 14 years ago
  61. cf4d5a2 Make InfoBarDelegate::GetIcon() return gfx::Image rather than SkBitmap. by [email protected] · 14 years ago
  62. 95fc6f9 More https for support URLs. Review URL: http://codereview.chromium.org/6824086 by [email protected] · 14 years ago
  63. e7c21b81 Move geolocation, desktop notification, and device orientation into their own message files.Also fix a regression from my earlier change to create a plugin through the embedder API. The fix is to not to create a plugin if the embedder returns NULL, and just have the default implementation create the plugin on its own.TBR=avi by [email protected] · 14 years ago
  64. 9c37e45 Fix some pass-by-values caught by Coverity by [email protected] · 14 years ago
  65. b3841c50 Update a bunch of files to the new location of notification files. by [email protected] · 14 years ago
  66. 7cceebac Split infobar_delegate.[cc,h] into separate pieces for the different classes defined within, so that each piece is shorter and clearer. by [email protected] · 14 years ago
  67. 5f945a0e Update a bunch of files to the new location of browser_thread.h by [email protected] · 14 years ago
  68. 87678d99 Move core pieces of geolocation from chrome to content.This is a rough carving in some places. i.e. geolocation_permission_context.h needs to split into the interface part and the implementation part. access_token_store.h needs to drop the chrome factory function. arbitrator_dependency_factory.h needs to be split up into the interface and the default implementation. I've left all this to future changes per the other file moves, and since this is already pretty large.TBR=joth by [email protected] · 14 years ago
  69. 41f5a3e3 Cleanup: by [email protected] · 14 years ago
  70. ec8f5116 Cleanup: by [email protected] · 14 years ago
  71. 70b1f80 Cleanup: by [email protected] · 14 years ago
  72. c051a1b Move l10n_util to ui/base by [email protected] · 14 years ago
  73. f4f50ef Cleanup: de-inline a bunch of classes, rename and move "PluginInstaller" to "PluginInstallerInfoBarDelegate" for clarity, lots of other misc. stuff by [email protected] · 14 years ago
  74. 90b8ec5 Don't show queued infobars on tab shutdown. by [email protected] · 14 years ago
  75. 42ce29d Move ResourceBundle, DataPack to ui/base by [email protected] · 14 years ago
  76. a8c229cc Cleanup: Remove unneeded chrome/browser/ui/browser.h usage. by [email protected] · 14 years ago
  77. 6cab28e Geolocation code cleanup following switch to client-based Geolocation. by [email protected] · 14 years ago
  78. 4a09a68 Remove legacy non-client-based geolocation code. by [email protected] · 14 years ago
  79. ffd0abd Client-based geolocation support. by [email protected] · 15 years ago
  80. 24ebb8c Revert rev 69137 due to incorrect change log. by [email protected] · 15 years ago
  81. 3263fe6 Merge branch 'GeolocationClientChange1' of ../../chromium-ro/src into issue-5612005 by [email protected] · 15 years ago
  82. eaa7dd18 Rename ExtensionsService to ExtensionService. by [email protected] · 15 years ago
  83. 8ecad5e Move: by [email protected] · 15 years ago
  84. 440348f Cleanup: Include browser.h -> ui/browser.h [Part 1]. by [email protected] · 15 years ago
  85. 91a7923 chromeos: Update help URLs. by [email protected] · 15 years ago
  86. 9adb969 Part 3 of immutable Extension refactor. by [email protected] · 15 years ago
  87. ecad776 Geolocation dispatcher rename: by [email protected] · 15 years ago
  88. e3671727 Rename ChromeThread to BrowserThread Part20: by [email protected] · 15 years ago
  89. 0aa26f4b Rename ChromeThread to BrowserThread Part11: by [email protected] · 15 years ago
  90. 0aade3e Refactoring geolocation code to work on its own thread. by [email protected] · 15 years ago
  91. 3924298 Fix behaviour of queued geolocation infobars on navigate. by [email protected] · 15 years ago
  92. 9f284f13 Remove the wstring FormatUrl() functions (and convert remaining users to the string16 verison). by [email protected] · 15 years ago
  93. 37858e5 Move prefs-related files under chrome/browser/ into a prefs/ subdir. by [email protected] · 15 years ago
  94. 252cad6 Remove all wstrings from the IPC logging subsystem. by [email protected] · 15 years ago
  95. 9791505 Fixed crash on navigation with queued geolocation permission requests by [email protected] · 15 years ago
  96. e23d3a3 Convert infobar APIs to UTF-16. by [email protected] · 15 years ago
  97. 9fb83e8 Store blocked and accessed cookies in the tab contents. by [email protected] · 15 years ago
  98. ddd231e Change a bunch of string types. by [email protected] · 15 years ago
  99. b7bbc3e528 geolocation: Fix the InfoBarType by changing it to PAGE_ACTION_TYPE. by [email protected] · 15 years ago
  100. 46ba908 Move content settings related events into their own delegate. by [email protected] · 15 years ago