summaryrefslogtreecommitdiffstats
path: root/ceee/ie/broker/broker_rpc_server.cc
Commit message (Collapse)AuthorAgeFilesLines
* The CEEE project is now deprecated.mad@chromium.org2011-02-011-185/+0
| | | | | | | | | BUG=None TEST=None Review URL: http://codereview.chromium.org/6386038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@73296 0039d316-1c4b-4281-b951-d872f2087c98
* Add missing base::lock usage.brettw@chromium.org2011-01-211-1/+1
| | | | | | | TEST=it compiles BUG=none Review URL: http://codereview.chromium.org/6336010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72108 0039d316-1c4b-4281-b951-d872f2087c98
* Remove obsolete base/lock.h and fix up callers to use the new header file andbrettw@chromium.org2011-01-211-2/+2
| | | | | | | | | | | the base namespace. Fix several files including lock.h unnecessarily. BUG=none TEST=none Original review=http://codereview.chromium.org/6142009/ Patch by leviw@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@72106 0039d316-1c4b-4281-b951-d872f2087c98
* Fix LOG_IF check.tommi@chromium.org2011-01-181-1/+1
| | | | | | | | | TEST=Silences expected log entries. BUG=none Review URL: http://codereview.chromium.org/6352007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71695 0039d316-1c4b-4281-b951-d872f2087c98
* Move base/win_util to the base/win directory and use the base::win namespace.brettw@google.com2010-12-311-1/+0
| | | | | | | | | Fix up includes, many files including base/win_util don't actually need it. TEST=it compiles BUG=none git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70341 0039d316-1c4b-4281-b951-d872f2087c98
* Restart of ceee_broker on crash.vitalybuka@chromium.org2010-12-021-26/+44
| | | | | | | | | | | Code re-factoring and cleanup. BUG=none TEST=none Review URL: http://codereview.chromium.org/5258006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67928 0039d316-1c4b-4281-b951-d872f2087c98
* Ensure that just started broker doesn't get events addressed to dead instance.vitalybuka@chromium.org2010-12-011-0/+1
| | | | | | | | | BUG=64967 TEST=none Review URL: http://codereview.chromium.org/5481002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67905 0039d316-1c4b-4281-b951-d872f2087c98
* Fixed rpc broker interface.vitalybuka@chromium.org2010-11-261-4/+2
| | | | | | | | | | | Fixed style issues of http://codereview.chromium.org/5349004/ BUG=none TEST=none Review URL: http://codereview.chromium.org/5305008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67453 0039d316-1c4b-4281-b951-d872f2087c98
* Attempt to recommit r67153 with successful tries.hansl@google.com2010-11-231-4/+2
| | | | | | | | | | Review here: http://codereview.chromium.org/5257003 BUG=None TEST=None Review URL: http://codereview.chromium.org/5356002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67167 0039d316-1c4b-4281-b951-d872f2087c98
* Revert 67153 - Ajusted the BrokerRpcClient, BHO and mediumtests to correctly ↵rsimha@chromium.org2010-11-231-2/+4
| | | | | | | | | | | | | | | EXPECT on Rpc calls. Also ajusted some invalid comments in the RpcServer and fixed a typo in the BHO mediumtest name. Reason for revert: broke the windows build. BUG=None TEST=mediumtest_ie.exe Review URL: http://codereview.chromium.org/5257003 TBR=hansl@google.com git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67156 0039d316-1c4b-4281-b951-d872f2087c98
* Ajusted the BrokerRpcClient, BHO and mediumtests to correctly EXPECT on Rpc ↵hansl@google.com2010-11-231-4/+2
| | | | | | | | | | | calls. Also ajusted some invalid comments in the RpcServer and fixed a typo in the BHO mediumtest name. BUG=None TEST=mediumtest_ie.exe Review URL: http://codereview.chromium.org/5257003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67153 0039d316-1c4b-4281-b951-d872f2087c98
* Add UMA histograms services to CEEE. The histograms are aggregated in the ↵hansl@google.com2010-11-231-0/+41
| | | | | | | | | | | | | | | broker, using RPC to send them, and then sent once every 15 minutes to the server. Uses metrics_service.cc from chrome_frame. Adds dependency to RPC runtime for the BHO and to glue_renderer for linking. This depends on http://codereview.chromium.org/5247001 for uploading data. BUG=none TEST=none Review URL: http://codereview.chromium.org/5116008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@67035 0039d316-1c4b-4281-b951-d872f2087c98
* Firing event to broker without worker thread.siggi@chromium.org2010-11-221-2/+2
| | | | | | | | | | | | Landing for vitalybuka@google.com. Original review at http://codereview.chromium.org/4989002/. BUG=3093218 TEST=Unittests pass Review URL: http://codereview.chromium.org/5241002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66946 0039d316-1c4b-4281-b951-d872f2087c98
* COM replaced with RPC for firing events in broker.siggi@chromium.org2010-11-151-0/+130
Sumbmitting for Vitaly Buka, see original change at http://codereview.chromium.org/4508002/. BUG=none TEST=Unittests in this change. Review URL: http://codereview.chromium.org/5010001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66121 0039d316-1c4b-4281-b951-d872f2087c98