summaryrefslogtreecommitdiffstats
path: root/chrome/service
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-03 22:09:27 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-03 22:09:27 +0000
commite3acc4b7fae21cfae40867fc702241061fe84205 (patch)
treee6357a81375265fade3109bf19afdf227681c918 /chrome/service
parentc6e6bf5953b878679b01886c90ba23c1436838b5 (diff)
downloadchromium_src-e3acc4b7fae21cfae40867fc702241061fe84205.zip
chromium_src-e3acc4b7fae21cfae40867fc702241061fe84205.tar.gz
chromium_src-e3acc4b7fae21cfae40867fc702241061fe84205.tar.bz2
Fix the Visual Studio 2005 build.
It seems like VS is getting confused by the meaning of CloudPrintURLFetcher::Delegate. It may be related to the fact that CloudPrintURLFetcher inherits from an interface named Delegate, but I don't know for sure. R=sanjeevr BUG=none TEST=none Review URL: http://codereview.chromium.org/5549008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@68226 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service')
-rw-r--r--chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc b/chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc
index 9380eaa..8a393fd 100644
--- a/chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc
+++ b/chrome/service/cloud_print/cloud_print_url_fetcher_unittest.cc
@@ -67,7 +67,7 @@ class TestCloudPrintURLFetcher : public CloudPrintURLFetcher {
};
class CloudPrintURLFetcherTest : public testing::Test,
- public CloudPrintURLFetcher::Delegate {
+ public CloudPrintURLFetcherDelegate {
public:
CloudPrintURLFetcherTest() : max_retries_(0), fetcher_(NULL) { }