| 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_MAINFRM_H_ | 5 #ifndef MEDIA_TOOLS_PLAYER_WTL_MAINFRM_H_ |
| 6 #define MEDIA_PLAYER_MAINFRM_H_ | 6 #define MEDIA_TOOLS_PLAYER_WTL_MAINFRM_H_ |
| 7 | 7 |
| 8 #include "media/player/list.h" | 8 #include "media/tools/player_wtl/list.h" |
| 9 #include "media/player/props.h" | 9 #include "media/tools/player_wtl/props.h" |
| 10 #include "media/player/seek.h" | 10 #include "media/tools/player_wtl/seek.h" |
| 11 #include "media/player/view.h" | 11 #include "media/tools/player_wtl/view.h" |
| 12 | 12 |
| 13 const int POPUP_MENU_POSITION = 0; | 13 const int POPUP_MENU_POSITION = 0; |
| 14 const int FILE_MENU_POSITION = 0; | 14 const int FILE_MENU_POSITION = 0; |
| 15 const int RECENT_MENU_POSITION = 6; | 15 const int RECENT_MENU_POSITION = 6; |
| 16 | 16 |
| 17 const wchar_t* const g_lpcstrMRURegKey = | 17 const wchar_t* const g_lpcstrMRURegKey = |
| 18 L"Software\\Google\\Video\\MediaPlayer"; | 18 L"Software\\Google\\Video\\MediaPlayer"; |
| 19 const wchar_t* const g_lpcstrApp = L"MediaPlayer"; | 19 const wchar_t* const g_lpcstrApp = L"MediaPlayer"; |
| 20 | 20 |
| 21 // Interface of the CMainFrame class | 21 // Interface of the CMainFrame class |
| (...skipping 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 dlg.DoModal(); | 708 dlg.DoModal(); |
| 709 } | 709 } |
| 710 | 710 |
| 711 | 711 |
| 712 void OnPlayGotoFrame(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wnd*/) { | 712 void OnPlayGotoFrame(UINT /*uNotifyCode*/, int /*nID*/, CWindow /*wnd*/) { |
| 713 CSeek seek; | 713 CSeek seek; |
| 714 seek.DoModal(); | 714 seek.DoModal(); |
| 715 } | 715 } |
| 716 }; | 716 }; |
| 717 | 717 |
| 718 #endif // MEDIA_PLAYER_MAINFRM_H_ | 718 #endif // MEDIA_TOOLS_PLAYER_WTL_MAINFRM_H_ |
| OLD | NEW |