summaryrefslogtreecommitdiffstats
path: root/WATCHLISTS
Commit message (Collapse)AuthorAgeFilesLines
* Move chrome/app/policy into components/policy.joaodasilva@chromium.org2013-12-161-1/+1
| | | | | | | | | | | | | | | | | | | | | | | This move enables using the files derived from policy_templates.json in iOS builds. List of changes: - cloud_policy_codegen.gyp and policy_templates.gypi have been merged into components/policy.gypi - policy_templates.json moved into components/policy/resources/ - policy_templates.grd and *.xtb files moved into components/policy/resources/ - syntax_check_policy_templates_json.py and chrome/tools/build/generate_policy_source.py moved into components/policy/tools BUG=271392 R=jochen@chromium.org, pastarmovj@chromium.org Review URL: https://codereview.chromium.org/108513011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240875 0039d316-1c4b-4281-b951-d872f2087c98
* WATCHLIST for casthclam@chromium.org2013-12-131-1/+7
| | | | | | | | Adding cast members to WATCHLIST. Review URL: https://codereview.chromium.org/103973006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@240568 0039d316-1c4b-4281-b951-d872f2087c98
* Remove kkania from various OWNERS and watchlists.kkania@chromium.org2013-12-091-1/+1
| | | | | | | | | BUG=none NOTRY=true Review URL: https://codereview.chromium.org/100113003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239588 0039d316-1c4b-4281-b951-d872f2087c98
* Added self to WATCHLISTS. Ran depot_tools/watchlists.py to verify.maniscalco@chromium.org2013-12-071-1/+2
| | | | | | Review URL: https://codereview.chromium.org/103583003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@239287 0039d316-1c4b-4281-b951-d872f2087c98
* Remove gauravsh@ from chromeos/net WATCHLISTgauravsh@chromium.org2013-11-261-2/+1
| | | | | | | | BUG=none Review URL: https://codereview.chromium.org/85693008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237257 0039d316-1c4b-4281-b951-d872f2087c98
* WATCHLISTS: Add nhiroki to fileapinhiroki@chromium.org2013-11-251-3/+5
| | | | | | | | | | BUG=none TEST=watchlists.py NOTRY=true Review URL: https://codereview.chromium.org/85253002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@237038 0039d316-1c4b-4281-b951-d872f2087c98
* Pepper: Move some OWNERS to WATCHLISTS.teravest@chromium.org2013-11-131-2/+5
| | | | | | | | | | | | | | | There are some OWNERS only in ppapi/api because they want to be notified of changes. However, listing users as OWNERS in a file doesn't enforce this; someone could easily just get approval from a top-level ppapi/ OWNER instead. This change guarantees that some members of the native_client_sdk team will get emails for any changes to ppapi/api and ppapi/c. BUG= Review URL: https://codereview.chromium.org/51113002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234735 0039d316-1c4b-4281-b951-d872f2087c98
* Add watchlist entries for Indexed DBjsbell@chromium.org2013-11-121-0/+9
| | | | | | | | | NOTRY=true TBR=dgrogan@chromium.org Review URL: https://codereview.chromium.org/69343009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234609 0039d316-1c4b-4281-b951-d872f2087c98
* Add watchlist for Device Orientation/Motion.timvolodine@chromium.org2013-11-121-0/+8
| | | | | | | | | | Add watchlist for the code related to the Device Orientation/Motion API, spec: http://dev.w3.org/geo/api/spec-source-orientation.html. Review URL: https://codereview.chromium.org/68703002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234608 0039d316-1c4b-4281-b951-d872f2087c98
* adding mcasas@ to webrtc_media watchlistmcasas@chromium.org2013-11-121-1/+2
| | | | | | Review URL: https://codereview.chromium.org/64223005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234372 0039d316-1c4b-4281-b951-d872f2087c98
* Remove bouncing email from WATCHLISTSpiman@chromium.org2013-11-081-1/+1
| | | | | | | | | TBR=vangelis NOTRY=true Review URL: https://codereview.chromium.org/65363004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@234028 0039d316-1c4b-4281-b951-d872f2087c98
* Add myself to prerender WATCHLIST.davidben@chromium.org2013-11-081-1/+2
| | | | | | | | BUG=none Review URL: https://codereview.chromium.org/65143002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233866 0039d316-1c4b-4281-b951-d872f2087c98
* Implement OzonePlatformspang@chromium.org2013-10-311-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | This provides a way to select an ozone implementation to use at build time. It replaces the previous ad-hoc requirement to inject implementations of ozone interfaces somewhere during initialization, such as by overriding ContentMainDelegate::PreSandboxStartup(). That requirement made it difficult for external ozone implementations to build internal targets such as content_shell because those targets do not initialize the external ozone implementation without additional patching. Enabling external ports of chromium is one of the main goals of ozone. The OzonePlatform code is located at ui/ozone and depends on code in ui/gfx and ui/events because it must inject implementations into those components. The ozone platform is initialized from ui/aura or ui/gl, as those components need the interfaces provided by ozone in order to function. There are two in-tree platforms currently: test (image dump) and dri (libdrm-based direct rendering). The platform is selected by the setting ozone_platform gyp variable and defaults to "test". Review URL: https://codereview.chromium.org/44933002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@232170 0039d316-1c4b-4281-b951-d872f2087c98
* Updated ozone watch listrjkroege@chromium.org2013-10-281-1/+4
| | | | | | | | | BUG=none R=sadrul@chromium.org Review URL: https://codereview.chromium.org/48913005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231385 0039d316-1c4b-4281-b951-d872f2087c98
* MAD out of instant.mad@chromium.org2013-10-281-1/+1
| | | | | | | | | NOTRY=true BUG=None Review URL: https://codereview.chromium.org/49043005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@231364 0039d316-1c4b-4281-b951-d872f2087c98
* Add myself to the Mojo watchlistabarth@chromium.org2013-10-241-0/+1
| | | | | | | | TBR=aa@chromium.org Review URL: https://codereview.chromium.org/39003003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230844 0039d316-1c4b-4281-b951-d872f2087c98
* Remove scheib from fullscreen controller watchlists.scheib@chromium.org2013-10-241-4/+0
| | | | | | | | NOTRY=true Review URL: https://codereview.chromium.org/38753002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@230569 0039d316-1c4b-4281-b951-d872f2087c98
* Update accessibility watchlists.dmazzoni@chromium.org2013-10-211-3/+5
| | | | | | | | | | | | | Add Peter, remove old team members. Add some more directories to watch. BUG=none NOTRY=true Review URL: https://codereview.chromium.org/27738003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229947 0039d316-1c4b-4281-b951-d872f2087c98
* yukishiino watches commits related to text input.yukishiino@chromium.org2013-10-191-2/+4
| | | | | | | | TEST=none Review URL: https://codereview.chromium.org/29083002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229560 0039d316-1c4b-4281-b951-d872f2087c98
* Separate ash stuff from aura watchlistsben@chromium.org2013-10-171-2/+7
| | | | | | | | | TBR=sky@chromium.org BUG= Review URL: https://codereview.chromium.org/27536008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229243 0039d316-1c4b-4281-b951-d872f2087c98
* Edit WATCHLIST to watch c/b/chromeos/drive/resource_metadata*hashimoto@chromium.org2013-10-171-1/+1
| | | | | | | | | | NOTRY=True BUG= R=kinaba@chromium.org Review URL: https://codereview.chromium.org/27637002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@229021 0039d316-1c4b-4281-b951-d872f2087c98
* Add video HW acceleration paths to webrtc-media WATCHLIST.fischman@chromium.org2013-10-151-2/+4
| | | | | | | | NOTRY=true Review URL: https://codereview.chromium.org/27402004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228793 0039d316-1c4b-4281-b951-d872f2087c98
* Fix WATCHLISTS.tfarina@chromium.org2013-10-131-1/+1
| | | | | | | | | | | | | | | Remove 'l' character that was added at the end of line 816 in crrev.com/228265 That character broke it. BUG=None TEST=verity that python ~/depot_tools/watchlists.py ui/views works again, and also on 'git cl upload'. TBR=ben@chromium.org Review URL: https://codereview.chromium.org/26429004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228393 0039d316-1c4b-4281-b951-d872f2087c98
* Fix syntax error in WATCHLISTSisherman@chromium.org2013-10-121-1/+1
| | | | | | | | | TBR=ben@chromium.org NOTRY=true Review URL: https://codereview.chromium.org/27049004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228304 0039d316-1c4b-4281-b951-d872f2087c98
* Fix watchlist to use more specific email addresses so I can filter better.ben@chromium.org2013-10-111-3/+7
| | | | | | | | | TBR=sky@chromium.org BUG= Review URL: https://codereview.chromium.org/27033007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228265 0039d316-1c4b-4281-b951-d872f2087c98
* Add myself to the watchlist for src/mojo.viettrungluu@chromium.org2013-10-111-1/+2
| | | | | | | | TBR=ben@chromium.org Review URL: https://codereview.chromium.org/27033005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228214 0039d316-1c4b-4281-b951-d872f2087c98
* Add myself to the watchlist for src/mojodarin@chromium.org2013-10-111-1/+2
| | | | | | | | TBR=ben@chromium.org Review URL: https://codereview.chromium.org/27041002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228195 0039d316-1c4b-4281-b951-d872f2087c98
* This removes me from the OWNERS files for which I was a membergspencer@chromium.org2013-10-111-1/+0
| | | | | | | | | | | | (I'm heading to another team at Google...) BUG=none TBR=zelidrag@chromium.org NO_TRY=true Review URL: https://codereview.chromium.org/26784002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228070 0039d316-1c4b-4281-b951-d872f2087c98
* Add self to watchlist for mojoben@chromium.org2013-10-101-1/+2
| | | | | | | | | TBR=darin@chromium.org BUG= Review URL: https://codereview.chromium.org/26879002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@228018 0039d316-1c4b-4281-b951-d872f2087c98
* Remove abodenha from autofill watchlist.abodenha@chromium.org2013-10-091-4/+6
| | | | | | | | | | NOTRY=true R=dbeam@chromium.org BUG=none Review URL: https://codereview.chromium.org/26580003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227765 0039d316-1c4b-4281-b951-d872f2087c98
* Update watchlist mail address for tziktzik@chromium.org2013-10-081-2/+2
| | | | | | | | | TBR=nhiroki NOTRY=true Review URL: https://codereview.chromium.org/26469002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227507 0039d316-1c4b-4281-b951-d872f2087c98
* Add myself to WATCHLIST for Ozone and Aura.kalyan.kondapally@intel.com2013-10-041-3/+6
| | | | | | | | | | This patch adds my e-mail to WATCHLIST to track changes in Ozone and Aura. BUG= Review URL: https://codereview.chromium.org/24360020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226987 0039d316-1c4b-4281-b951-d872f2087c98
* Remove scheib app_container watchlist.scheib@chromium.org2013-10-021-5/+0
| | | | | | | | NOTRY=true Review URL: https://codereview.chromium.org/25765003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226606 0039d316-1c4b-4281-b951-d872f2087c98
* Add a watchlist for mojo.aa@chromium.org2013-09-241-0/+4
| | | | | | | | R=vtl@google.com Review URL: https://codereview.chromium.org/24250009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@225085 0039d316-1c4b-4281-b951-d872f2087c98
* Add myself to WATCHLIST for the Files app.mtomasz@chromium.org2013-09-191-0/+4
| | | | | | | | | | | | This patch adds my e-mail to WATCHLIST to track changes in the Files app. TEST=Tested with watchlists.py. BUG=none R=hashimoto@chromium.org Review URL: https://codereview.chromium.org/24240005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@224093 0039d316-1c4b-4281-b951-d872f2087c98
* Add watchlist for webrtc related media stuff.wjia@chromium.org2013-09-181-4/+11
| | | | | | | | R=ronghuawu@chromium.org Review URL: https://codereview.chromium.org/24201004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@223967 0039d316-1c4b-4281-b951-d872f2087c98
* Add Native Client SDK docs to nacl watchlistdschuff@chromium.org2013-09-061-1/+2
| | | | | | | | | | | | This will CC reviews of changes to SDK documentation to native-client-reviews@googlegroups.com R=eliben@chromium.org BUG=none Review URL: https://codereview.chromium.org/23475024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@221732 0039d316-1c4b-4281-b951-d872f2087c98
* s/piman/piman+watch/ in WATCHLISTSpiman@chromium.org2013-08-291-1/+1
| | | | | | | | | NOTRY=true BUG=None Review URL: https://chromiumcodereview.appspot.com/23708008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@220399 0039d316-1c4b-4281-b951-d872f2087c98
* Remove self from autofill WATCHLIST.ramankk@chromium.org2013-08-281-2/+1
| | | | | | | | BUG= Review URL: https://chromiumcodereview.appspot.com/23620002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219948 0039d316-1c4b-4281-b951-d872f2087c98
* Add self to gpu watchlistpiman@chromium.org2013-08-261-1/+1
| | | | | | | | | BUG=None R=apatrick@chromium.org Review URL: https://codereview.chromium.org/23443003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219612 0039d316-1c4b-4281-b951-d872f2087c98
* Add streams watchlist for contentzork@chromium.org2013-08-231-1/+4
| | | | | | | | R=darin@chromium.org Review URL: https://codereview.chromium.org/23241019 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219318 0039d316-1c4b-4281-b951-d872f2087c98
* Add cast watchlist.miu@chromium.org2013-08-221-0/+4
| | | | | | | | NOTRY=true Review URL: https://chromiumcodereview.appspot.com/22903024 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@218932 0039d316-1c4b-4281-b951-d872f2087c98
* Added support for the content protection profile to AttestationFlow.dkrahn@google.com2013-08-141-1/+2
| | | | | | | | | | | | This change moves all attestation certificate requests to the new CreateCertRequestByProfile dbus method. BUG=chromium:260504 TEST=unit, manual Review URL: https://chromiumcodereview.appspot.com/20873002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@217673 0039d316-1c4b-4281-b951-d872f2087c98
* Add geolocation watchlist for Chromium.mvanouwerkerk@chromium.org2013-08-091-0/+9
| | | | | | Review URL: https://chromiumcodereview.appspot.com/22233002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@216701 0039d316-1c4b-4281-b951-d872f2087c98
* Add app_current_window to app_container watchlist.scheib@chromium.org2013-08-061-1/+2
| | | | | | | | notry=true Review URL: https://chromiumcodereview.appspot.com/22432002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215942 0039d316-1c4b-4281-b951-d872f2087c98
* aura: Create aura_compositor watch list.danakj@chromium.org2013-08-021-0/+13
| | | | | | | | | | | | Create the list and add the owners of content/browser/aura/ to it. R=jbauman, piman, sievers BUG= Review URL: https://chromiumcodereview.appspot.com/21424003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215150 0039d316-1c4b-4281-b951-d872f2087c98
* Remove backer from WATCHLISTS and OWNERSbacker@chromium.org2013-08-011-1/+1
| | | | | | | | | BUG=None TBR=danakj@chromium.org, piman@chromium.org Review URL: https://codereview.chromium.org/21292002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215092 0039d316-1c4b-4281-b951-d872f2087c98
* Add tab_capture to WATCHLISTS.miu@chromium.org2013-07-281-0/+18
| | | | | | | | NOTRY=true Review URL: https://chromiumcodereview.appspot.com/20877002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@214111 0039d316-1c4b-4281-b951-d872f2087c98
* Add scheib to new watchlist for app container related files.scheib@chromium.org2013-07-261-0/+4
| | | | | | Review URL: https://chromiumcodereview.appspot.com/20206002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@213909 0039d316-1c4b-4281-b951-d872f2087c98
* Add devtools-reviews@chromium.org to the watchers of devtools commits.pfeldman@chromium.org2013-07-221-1/+2
| | | | | | | | TBR=paulirish Review URL: https://codereview.chromium.org/19919003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@212852 0039d316-1c4b-4281-b951-d872f2087c98