diff options
author | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-07 00:59:43 +0000 |
---|---|---|
committer | fischman@chromium.org <fischman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-07 00:59:43 +0000 |
commit | eda3589e7370bdf68383e1d1f8d0fec8968d05ed (patch) | |
tree | a6deecbaf9cc8a16a34c1bc5ae7cc45da5aeb452 /chrome_frame | |
parent | 734ddf0250c88af441832964661454e2cf0c0f61 (diff) | |
download | chromium_src-eda3589e7370bdf68383e1d1f8d0fec8968d05ed.zip chromium_src-eda3589e7370bdf68383e1d1f8d0fec8968d05ed.tar.gz chromium_src-eda3589e7370bdf68383e1d1f8d0fec8968d05ed.tar.bz2 |
Purge ImplementsThreadSafeReferenceCounting() from the codebase now that Task is dead.
TBR=ananta@chromium.org,apatrick@chromium.org
Review URL: https://chromiumcodereview.appspot.com/10836116
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@150202 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame')
-rw-r--r-- | chrome_frame/chrome_frame_activex_base.h | 5 | ||||
-rw-r--r-- | chrome_frame/test/ie_event_sink.h | 5 | ||||
-rw-r--r-- | chrome_frame/test/url_request_test.cc | 4 | ||||
-rw-r--r-- | chrome_frame/urlmon_url_request_private.h | 4 |
4 files changed, 0 insertions, 18 deletions
diff --git a/chrome_frame/chrome_frame_activex_base.h b/chrome_frame/chrome_frame_activex_base.h index fad7290..60919a1 100644 --- a/chrome_frame/chrome_frame_activex_base.h +++ b/chrome_frame/chrome_frame_activex_base.h @@ -378,11 +378,6 @@ END_MSG_MAP() return !is_privileged(); } - // Needed to support PostTask. - static bool ImplementsThreadSafeReferenceCounting() { - return true; - } - static void BringWebBrowserWindowToTop(IWebBrowser2* web_browser2) { DCHECK(web_browser2); if (web_browser2) { diff --git a/chrome_frame/test/ie_event_sink.h b/chrome_frame/test/ie_event_sink.h index d9c0e6f..13b0379 100644 --- a/chrome_frame/test/ie_event_sink.h +++ b/chrome_frame/test/ie_event_sink.h @@ -69,11 +69,6 @@ class IEEventSink &DIID_DWebBrowserEvents2>, public IUnknown { public: - // Needed to support PostTask. - static bool ImplementsThreadSafeReferenceCounting() { - return true; - } - typedef IDispEventSimpleImpl<0, IEEventSink, &DIID_DWebBrowserEvents2> DispEventsImpl; IEEventSink(); diff --git a/chrome_frame/test/url_request_test.cc b/chrome_frame/test/url_request_test.cc index 15037d8..6952595 100644 --- a/chrome_frame/test/url_request_test.cc +++ b/chrome_frame/test/url_request_test.cc @@ -49,10 +49,6 @@ class MockUrlDelegate : public PluginUrlRequestDelegate { MOCK_METHOD4(OnCookiesRetrieved, void(bool success, const GURL& url, const std::string& cookie, int cookie_id)); - static bool ImplementsThreadSafeReferenceCounting() { - return false; - } - void PostponeReadRequest(chrome_frame_test::TimedMsgLoop* loop, UrlmonUrlRequest* request, int bytes_to_read) { loop->PostTask(FROM_HERE, diff --git a/chrome_frame/urlmon_url_request_private.h b/chrome_frame/urlmon_url_request_private.h index 469963f..a8ef99b 100644 --- a/chrome_frame/urlmon_url_request_private.h +++ b/chrome_frame/urlmon_url_request_private.h @@ -56,10 +56,6 @@ class UrlmonUrlRequest // to identify request objects in the log. std::string me() const; - static bool ImplementsThreadSafeReferenceCounting() { - return true; - } - protected: UrlmonUrlRequest(); ~UrlmonUrlRequest(); |