| OLD | NEW |
| 1 /* | 1 /* |
| 2 * libjingle | 2 * libjingle |
| 3 * Copyright 2004 Google Inc. | 3 * Copyright 2004 Google Inc. |
| 4 * | 4 * |
| 5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
| 6 * modification, are permitted provided that the following conditions are met: | 6 * modification, are permitted provided that the following conditions are met: |
| 7 * | 7 * |
| 8 * 1. Redistributions of source code must retain the above copyright notice, | 8 * 1. Redistributions of source code must retain the above copyright notice, |
| 9 * this list of conditions and the following disclaimer. | 9 * this list of conditions and the following disclaimer. |
| 10 * 2. Redistributions in binary form must reproduce the above copyright notice, | 10 * 2. Redistributions in binary form must reproduce the above copyright notice, |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 0x8c, 0x23, 0xe0, 0xc0, 0xff, 0xee, 0x7f, 0x0e | 47 0x8c, 0x23, 0xe0, 0xc0, 0xff, 0xee, 0x7f, 0x0e |
| 48 } }, 4 | 48 } }, 4 |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 #include "webrtc/base/arraysize.h" | 51 #include "webrtc/base/arraysize.h" |
| 52 #include "webrtc/base/logging.h" | 52 #include "webrtc/base/logging.h" |
| 53 #include "webrtc/base/stringutils.h" | 53 #include "webrtc/base/stringutils.h" |
| 54 #include "webrtc/base/thread.h" | 54 #include "webrtc/base/thread.h" |
| 55 #include "webrtc/base/win32.h" // ToUtf8 | 55 #include "webrtc/base/win32.h" // ToUtf8 |
| 56 #include "webrtc/base/win32window.h" | 56 #include "webrtc/base/win32window.h" |
| 57 #include "talk/media/base/mediacommon.h" | 57 #include "talk/media/base/mediacommon.h" // Do not sort this above the others. |
| 58 #ifdef HAVE_LOGITECH_HEADERS | 58 #ifdef HAVE_LOGITECH_HEADERS |
| 59 #include "third_party/logitech/files/logitechquickcam.h" | 59 #include "third_party/logitech/files/logitechquickcam.h" |
| 60 #endif | 60 #endif |
| 61 | 61 |
| 62 namespace cricket { | 62 namespace cricket { |
| 63 | 63 |
| 64 DeviceManagerInterface* DeviceManagerFactory::Create() { | 64 DeviceManagerInterface* DeviceManagerFactory::Create() { |
| 65 return new Win32DeviceManager(); | 65 return new Win32DeviceManager(); |
| 66 } | 66 } |
| 67 | 67 |
| (...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 } | 406 } |
| 407 } | 407 } |
| 408 result = 0; | 408 result = 0; |
| 409 return true; | 409 return true; |
| 410 } | 410 } |
| 411 | 411 |
| 412 return false; | 412 return false; |
| 413 } | 413 } |
| 414 | 414 |
| 415 }; // namespace cricket | 415 }; // namespace cricket |
| OLD | NEW |