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

  /external/chromium/base/threading/
non_thread_safe.h 15 // Do nothing implementation of NonThreadSafe, for release mode.
17 // Note: You should almost always use the NonThreadSafe class to get
29 // NonThreadSafe is a helper class used to help verify that methods of a
37 // class MyClass : public base::NonThreadSafe {
48 class NonThreadSafe : public NonThreadSafeImpl {
51 class NonThreadSafe : public NonThreadSafeDoNothing {
  /external/chromium_org/base/threading/
non_thread_safe.h 8 // Classes deriving from NonThreadSafe may need to suppress MSVC warning 4275:
27 // Do nothing implementation of NonThreadSafe, for release mode.
29 // Note: You should almost always use the NonThreadSafe class to get
42 // NonThreadSafe is a helper class used to help verify that methods of a
50 // class MyClass : public base::NonThreadSafe {
59 // NonThreadSafe, but does not require inheritence. In general, it is preferable
61 // NonThreadSafe. For more details about when to choose one over the other, see
64 typedef NonThreadSafeImpl NonThreadSafe;
66 typedef NonThreadSafeDoNothing NonThreadSafe;

Completed in 47 milliseconds