HomeSort by relevance Sort by last modified time
    Searched defs:NonThreadSafe (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/base/threading/
non_thread_safe.h 8 // Classes deriving from NonThreadSafe may need to suppress MSVC warning 4275:
25 // Do nothing implementation of NonThreadSafe, for release mode.
27 // Note: You should almost always use the NonThreadSafe class to get
40 // NonThreadSafe is a helper class used to help verify that methods of a
48 // class MyClass : public base::NonThreadSafe {
57 // NonThreadSafe, but does not require inheritance. In general, it is preferable
59 // NonThreadSafe. For more details about when to choose one over the other, see
62 typedef NonThreadSafeImpl NonThreadSafe;
64 typedef NonThreadSafeDoNothing NonThreadSafe;
  /external/chromium_org/media/base/android/java/src/org/chromium/media/
AudioManagerAndroid.java 44 * NonThreadSafe is a helper class used to help verify that methods of a
49 private static class NonThreadSafe {
52 public NonThreadSafe() {
194 private final NonThreadSafe mNonThreadSafe = new NonThreadSafe();
    [all...]

Completed in 111 milliseconds