diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-10 18:34:26 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-10 18:34:26 +0000 |
commit | d3ad38b46a4674a2c89d7794bd98f42eff3bb56a (patch) | |
tree | 924138da1d1eb83fc3d50dc83f233ae464bec702 /win8/test/open_with_dialog_controller.cc | |
parent | b9f6ba351610bf68b640eb6188c2b047edd6b44f (diff) | |
download | chromium_src-d3ad38b46a4674a2c89d7794bd98f42eff3bb56a.zip chromium_src-d3ad38b46a4674a2c89d7794bd98f42eff3bb56a.tar.gz chromium_src-d3ad38b46a4674a2c89d7794bd98f42eff3bb56a.tar.bz2 |
win: Don't pass a qualified inner class name to DISALLOW_COPY_AND_ASSIGN.
DISALLOW_COPY_AND_ASSIGN expands to copy constructor and assignment operator,
which are spelled using an unqualified name. No functionality change, but makes
clang happier.
BUG=82385
R=hans@chromium.org
TBR=grt@chromium.org, xhwang@chromium.org
Review URL: https://codereview.chromium.org/192953003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255991 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'win8/test/open_with_dialog_controller.cc')
-rw-r--r-- | win8/test/open_with_dialog_controller.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win8/test/open_with_dialog_controller.cc b/win8/test/open_with_dialog_controller.cc index 5a454ef..b9a1609 100644 --- a/win8/test/open_with_dialog_controller.cc +++ b/win8/test/open_with_dialog_controller.cc @@ -90,7 +90,7 @@ class OpenWithDialogController::Context { HRESULT automation_result_; std::vector<base::string16> automation_choices_; base::WeakPtrFactory<Context> weak_ptr_factory_; - DISALLOW_COPY_AND_ASSIGN(OpenWithDialogController::Context); + DISALLOW_COPY_AND_ASSIGN(Context); }; OpenWithDialogController::Context::Context() |