Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(859)

Side by Side Diff: media/tools/player_wtl/seek.h

Issue 431046: Re-organizing all tools under /src/media to be consistent with the rest of the repository. (Closed)
Patch Set: Created 11 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « media/tools/player_wtl/resource.h ('k') | media/tools/player_wtl/toolbar.bmp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « media/tools/player_wtl/resource.h ('k') | media/tools/player_wtl/toolbar.bmp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698