diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 12:26:46 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-13 12:26:46 +0000 |
commit | 8c11771cbb502134852fdea59c4e6b383fa0c235 (patch) | |
tree | 1f28b9be0251b62946a0b8a55931bf3cb6354a47 /chrome/views/accelerator.h | |
parent | 2ce3d9dae916dda6c1ec91d013b71ba42179ce32 (diff) | |
download | chromium_src-8c11771cbb502134852fdea59c4e6b383fa0c235.zip chromium_src-8c11771cbb502134852fdea59c4e6b383fa0c235.tar.gz chromium_src-8c11771cbb502134852fdea59c4e6b383fa0c235.tar.bz2 |
Porting in views/
This actually manages to compile few files on Linux.
Porting some other files from views/ would be more difficult,
but this view.h change unblocks porting opportunities in other areas.
Review URL: http://codereview.chromium.org/17352
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7921 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/accelerator.h')
-rw-r--r-- | chrome/views/accelerator.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/views/accelerator.h b/chrome/views/accelerator.h index 2bf8253..44f0acf 100644 --- a/chrome/views/accelerator.h +++ b/chrome/views/accelerator.h @@ -38,7 +38,7 @@ class Accelerator { ~Accelerator() { }; - Accelerator& Accelerator::operator=(const Accelerator& accelerator) { + Accelerator& operator=(const Accelerator& accelerator) { if (this != &accelerator) { key_code_ = accelerator.key_code_; modifiers_ = accelerator.modifiers_; |