summaryrefslogtreecommitdiffstats
path: root/components/visitedlink
Commit message (Collapse)AuthorAgeFilesLines
* components: Move visitedlink into visitedlink namespace.tfarina@chromium.org2013-05-1711-37/+34
| | | | | | | | | BUG=238223 R=joi@chromium.org Review URL: https://chromiumcodereview.appspot.com/14884016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@200665 0039d316-1c4b-4281-b951-d872f2087c98
* components: Use base::MessageLoop.xhwang@chromium.org2013-05-061-8/+8
| | | | | | | | | BUG=236029 R=joi@chromium.org Review URL: https://chromiumcodereview.appspot.com/14021020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@198374 0039d316-1c4b-4281-b951-d872f2087c98
* components: Remove use of ALLOW_THIS_IN_INITIALIZER_LIST.scherkus@chromium.org2013-04-261-2/+1
| | | | | | | | | | It's no longer providing value as the MSVC warning is disabled during compilation. Refer to bug for details. BUG=234765 Review URL: https://codereview.chromium.org/13998034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@196809 0039d316-1c4b-4281-b951-d872f2087c98
* Convert string16 -> base::string16 in components/brettw@chromium.org2013-04-111-2/+2
| | | | | | | | BUG= Review URL: https://codereview.chromium.org/13973004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@193682 0039d316-1c4b-4281-b951-d872f2087c98
* Add perf tests target to components.tfarina@chromium.org2013-04-051-9/+4
| | | | | | | | | | | | | NOTE: This does not run on perf test bots yet. BUG=138280 TEST=components_perftests R=boliu@chromium.org,kaiwang@chromium.org,joi@chromium.org,sky@chromium.org Review URL: https://chromiumcodereview.appspot.com/13392002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192607 0039d316-1c4b-4281-b951-d872f2087c98
* Add cevans as an IPC OWNER for all areas.palmer@chromium.org2013-03-181-0/+1
| | | | | | | | | | He was an OWNER of some; now all. NOTRY=true Review URL: https://codereview.chromium.org/12672006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188870 0039d316-1c4b-4281-b951-d872f2087c98
* [Cleanup] Remove StringPrintf from global namespacegroby@chromium.org2013-03-181-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | use of StringPrintf now requires prefixing with base:: or a per-scope using directive TBR'd: abodenha: chrome/service brettw: content, third_party, webkit darin: base, chrome/browser, chrome/renderer dgarret: courgette enne: cc fischmann: media gbillock: sql joi: google_apis,components rsleevi: net, crypto sky: chrome/test thestig: printing, chrome/common, tsepez: ipc wez: remoting yfriedman: testing/android NOTRY=true R=brettw@chromium.org TBR=joi@chromium.org, rsleevi@chromium.org, enne@chromium.org, thestig@chromium.org, darin@chromium.org, abodenha@chromium.org, sky@chromium.org, dgarret@chromium.org, tsepez@chromium.org, fishman@chromium.org, wez@chromium.org, gbillock@chromium.org, yfriedman@chromium.org BUG= Review URL: https://codereview.chromium.org/12767006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188857 0039d316-1c4b-4281-b951-d872f2087c98
* Move file_path.h to base/files.brettw@chromium.org2013-02-242-2/+2
| | | | | | TBR=sky git-svn-id: svn://svn.chromium.org/chrome/trunk/src@184344 0039d316-1c4b-4281-b951-d872f2087c98
* More FilePath -> base::FilePath replacement.brettw@chromium.org2013-02-104-12/+12
| | | | | | Review URL: https://codereview.chromium.org/12225112 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181655 0039d316-1c4b-4281-b951-d872f2087c98
* Linux/ChromeOS Chromium style checker cleanup, assorted top directories edition.rsleevi@chromium.org2013-02-073-8/+8
| | | | | | | | | | | | Automated clean up of style checker errors that were missed due to the plugin not being executed on implementation files. BUG=115047 TBR=miket Review URL: https://chromiumcodereview.appspot.com/12245003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181292 0039d316-1c4b-4281-b951-d872f2087c98
* Move visitedlink and auto_login_parser to component test targetboliu@chromium.org2013-01-252-44/+37
| | | | | | | | | BUG=168716 Review URL: https://chromiumcodereview.appspot.com/12038055 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178777 0039d316-1c4b-4281-b951-d872f2087c98
* Add VisitedLink option to not persist to disk.boliu@chromium.org2013-01-254-27/+59
| | | | | | | | | | | | | | | This is for Android WebView where persistence of VisitedLink database is handled by the app embedding the WebView. Added bool parameter to VisitedLinkMaster constructors. In VisitedLinkMaster, check this option before every method call to access the file, and add DCHECKs inside the disk io methods themselves. BUG= Review URL: https://chromiumcodereview.appspot.com/11884034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178705 0039d316-1c4b-4281-b951-d872f2087c98
* Disable VisitedLink in incognito modeboliu@chromium.org2013-01-233-16/+27
| | | | | | | | | | | | | | | | | | Fix regression introduced in r175906 where the default and incognito profile shares the same VisitedLinkMaster. Before r175906, a separate VisitedLinkMaster is created for incognito profile but since no HistoryService is created for the incognito profile, the VisitedLinkMaster never has urls added to it. In this CL, just skip creating an VisitedLinkMaster for the incognito profile in the first place. BUG=171374 Review URL: https://chromiumcodereview.appspot.com/12039025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178245 0039d316-1c4b-4281-b951-d872f2087c98
* Componentize visitedlinks to src/components/visitedlinkboliu@chromium.org2013-01-2320-0/+3192
All visitedlink files moved to src/components/visitedlink/[browser|common|renderer|test] Created static lib targets for browser, common, and renderer. Test files are moved but still uses old test targets in chrome/ Dcommitted due to AllowScopedIO being moved but still triggers presubmit error. Bots are mostly happy. BUG=168716 Review URL: https://codereview.chromium.org/11825011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@178176 0039d316-1c4b-4281-b951-d872f2087c98