| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. Use of this |
| 2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
| 3 // LICENSE file. | 3 // LICENSE file. |
| 4 | 4 |
| 5 #ifndef MEDIA_PLAYER_SEEK_H_ | 5 #ifndef MEDIA_TOOLS_PLAYER_WTL_SEEK_H_ |
| 6 #define MEDIA_PLAYER_SEEK_H_ | 6 #define MEDIA_TOOLS_PLAYER_WTL_SEEK_H_ |
| 7 | 7 |
| 8 #include "media/player/player_wtl.h" | 8 #include "media/tools/player_wtl/player_wtl.h" |
| 9 | 9 |
| 10 // Movie seek dialog. | 10 // Movie seek dialog. |
| 11 // TODO(fbachard): Frame properties only work for images, so | 11 // TODO(fbachard): Frame properties only work for images, so |
| 12 // this tab is removed until movie frame properties can be added. | 12 // this tab is removed until movie frame properties can be added. |
| 13 class CSeek : public CSimpleDialog<IDD_SEEK>, | 13 class CSeek : public CSimpleDialog<IDD_SEEK>, |
| 14 public CMessageFilter, | 14 public CMessageFilter, |
| 15 public CIdleHandler { | 15 public CIdleHandler { |
| 16 public: | 16 public: |
| 17 CSeek() { | 17 CSeek() { |
| 18 } | 18 } |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 // unregister message filtering and idle updates | 87 // unregister message filtering and idle updates |
| 88 CMessageLoop* pLoop = g_module.GetMessageLoop(); | 88 CMessageLoop* pLoop = g_module.GetMessageLoop(); |
| 89 ATLASSERT(pLoop != NULL); | 89 ATLASSERT(pLoop != NULL); |
| 90 pLoop->RemoveMessageFilter(this); | 90 pLoop->RemoveMessageFilter(this); |
| 91 pLoop->RemoveIdleHandler(this); | 91 pLoop->RemoveIdleHandler(this); |
| 92 bHandled = FALSE; | 92 bHandled = FALSE; |
| 93 return 1; | 93 return 1; |
| 94 } | 94 } |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 #endif // MEDIA_PLAYER_SEEK_H_ | 97 #endif // MEDIA_TOOLS_PLAYER_WTL_SEEK_H_ |
| OLD | NEW |