summaryrefslogtreecommitdiff
path: root/system_wrappers
diff options
context:
space:
mode:
authorpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-07-03 15:12:26 +0000
committerpbos@webrtc.org <pbos@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-07-03 15:12:26 +0000
commit3b89e10f31160da35b408fd00cb8f89d2b08862d (patch)
treec19dd0227603c35bbd8a0b7704d2456d0af1dc3b /system_wrappers
parentcbb3966f2871572a0b56c6aaeb66cfbcf22fd827 (diff)
downloadwebrtc-3b89e10f31160da35b408fd00cb8f89d2b08862d.tar.gz
Proper spacing for end-of-namespace comments.
BUG= R=mflodman@webrtc.org, tina.legrand@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1760006 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4293 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'system_wrappers')
-rw-r--r--system_wrappers/interface/condition_variable_wrapper.h2
-rw-r--r--system_wrappers/interface/cpu_features_wrapper.h2
-rw-r--r--system_wrappers/interface/cpu_info.h2
-rw-r--r--system_wrappers/interface/critical_section_wrapper.h2
-rw-r--r--system_wrappers/interface/event_wrapper.h2
-rw-r--r--system_wrappers/interface/file_wrapper.h2
-rw-r--r--system_wrappers/interface/map_wrapper.h2
-rw-r--r--system_wrappers/interface/rw_lock_wrapper.h2
-rw-r--r--system_wrappers/interface/scoped_ptr.h2
-rw-r--r--system_wrappers/interface/thread_wrapper.h2
-rw-r--r--system_wrappers/source/atomic32_posix.cc2
-rw-r--r--system_wrappers/source/condition_variable.cc2
-rw-r--r--system_wrappers/source/condition_variable_posix.cc2
-rw-r--r--system_wrappers/source/condition_variable_posix.h2
-rw-r--r--system_wrappers/source/cpu_info.cc2
-rw-r--r--system_wrappers/source/critical_section.cc2
-rw-r--r--system_wrappers/source/critical_section_posix.cc2
-rw-r--r--system_wrappers/source/critical_section_posix.h2
-rw-r--r--system_wrappers/source/critical_section_win.cc2
-rw-r--r--system_wrappers/source/critical_section_win.h2
-rw-r--r--system_wrappers/source/event.cc2
-rw-r--r--system_wrappers/source/event_posix.cc2
-rw-r--r--system_wrappers/source/file_impl.cc2
-rw-r--r--system_wrappers/source/file_impl.h2
-rw-r--r--system_wrappers/source/list_no_stl.cc2
-rw-r--r--system_wrappers/source/list_stl.cc2
-rw-r--r--system_wrappers/source/map.cc2
-rw-r--r--system_wrappers/source/map_no_stl.cc2
-rw-r--r--system_wrappers/source/map_no_stl.h2
-rw-r--r--system_wrappers/source/set_thread_name_win.h2
-rw-r--r--system_wrappers/source/sort.cc2
-rw-r--r--system_wrappers/source/thread.cc2
-rw-r--r--system_wrappers/source/thread_posix.cc2
-rw-r--r--system_wrappers/source/thread_posix.h2
-rw-r--r--system_wrappers/source/thread_win.cc2
-rw-r--r--system_wrappers/source/thread_win.h2
36 files changed, 36 insertions, 36 deletions
diff --git a/system_wrappers/interface/condition_variable_wrapper.h b/system_wrappers/interface/condition_variable_wrapper.h
index 29d2dfe1..151f00ec 100644
--- a/system_wrappers/interface/condition_variable_wrapper.h
+++ b/system_wrappers/interface/condition_variable_wrapper.h
@@ -37,6 +37,6 @@ class ConditionVariableWrapper {
virtual void WakeAll() = 0;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CONDITION_VARIABLE_WRAPPER_H_
diff --git a/system_wrappers/interface/cpu_features_wrapper.h b/system_wrappers/interface/cpu_features_wrapper.h
index eacfe409..85152ba1 100644
--- a/system_wrappers/interface/cpu_features_wrapper.h
+++ b/system_wrappers/interface/cpu_features_wrapper.h
@@ -45,7 +45,7 @@ extern WebRtc_CPUInfo WebRtc_GetCPUInfoNoASM;
extern uint64_t WebRtc_GetCPUFeaturesARM(void);
#if defined(__cplusplus) || defined(c_plusplus)
-} // extern "C"
+} // extern "C"
#endif
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_FEATURES_WRAPPER_H_
diff --git a/system_wrappers/interface/cpu_info.h b/system_wrappers/interface/cpu_info.h
index 70864272..fa8c3881 100644
--- a/system_wrappers/interface/cpu_info.h
+++ b/system_wrappers/interface/cpu_info.h
@@ -24,6 +24,6 @@ class CpuInfo {
static uint32_t number_of_cores_;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CPU_INFO_H_
diff --git a/system_wrappers/interface/critical_section_wrapper.h b/system_wrappers/interface/critical_section_wrapper.h
index 167951d9..0253a282 100644
--- a/system_wrappers/interface/critical_section_wrapper.h
+++ b/system_wrappers/interface/critical_section_wrapper.h
@@ -56,6 +56,6 @@ class CriticalSectionScoped {
CriticalSectionWrapper* ptr_crit_sec_;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_CRITICAL_SECTION_WRAPPER_H_
diff --git a/system_wrappers/interface/event_wrapper.h b/system_wrappers/interface/event_wrapper.h
index 4ee18a6f..7a18232f 100644
--- a/system_wrappers/interface/event_wrapper.h
+++ b/system_wrappers/interface/event_wrapper.h
@@ -55,6 +55,6 @@ class EventWrapper {
virtual bool StopTimer() = 0;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_EVENT_WRAPPER_H_
diff --git a/system_wrappers/interface/file_wrapper.h b/system_wrappers/interface/file_wrapper.h
index 2ab6875b..5de6774a 100644
--- a/system_wrappers/interface/file_wrapper.h
+++ b/system_wrappers/interface/file_wrapper.h
@@ -73,6 +73,6 @@ class FileWrapper : public InStream, public OutStream {
virtual int Rewind() = 0;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_FILE_WRAPPER_H_
diff --git a/system_wrappers/interface/map_wrapper.h b/system_wrappers/interface/map_wrapper.h
index c0c332ec..86643e59 100644
--- a/system_wrappers/interface/map_wrapper.h
+++ b/system_wrappers/interface/map_wrapper.h
@@ -70,6 +70,6 @@ class MapWrapper {
std::map<int, MapItem*> map_;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_MAP_WRAPPER_H_
diff --git a/system_wrappers/interface/rw_lock_wrapper.h b/system_wrappers/interface/rw_lock_wrapper.h
index 91305c15..80eb5da8 100644
--- a/system_wrappers/interface/rw_lock_wrapper.h
+++ b/system_wrappers/interface/rw_lock_wrapper.h
@@ -63,6 +63,6 @@ class WriteLockScoped {
RWLockWrapper& rw_lock_;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_RW_LOCK_WRAPPER_H_
diff --git a/system_wrappers/interface/scoped_ptr.h b/system_wrappers/interface/scoped_ptr.h
index 74b6ad36..84113d83 100644
--- a/system_wrappers/interface/scoped_ptr.h
+++ b/system_wrappers/interface/scoped_ptr.h
@@ -253,6 +253,6 @@ void swap(scoped_ptr_malloc<T,FF>& a, scoped_ptr_malloc<T,FF>& b) {
a.swap(b);
}
-} // namespace webrtc
+} // namespace webrtc
#endif // #ifndef WEBRTC_SYSTEM_WRAPPERS_INTERFACE_SCOPED_PTR_H_
diff --git a/system_wrappers/interface/thread_wrapper.h b/system_wrappers/interface/thread_wrapper.h
index e8323636..d9e7d8a3 100644
--- a/system_wrappers/interface/thread_wrapper.h
+++ b/system_wrappers/interface/thread_wrapper.h
@@ -89,6 +89,6 @@ class ThreadWrapper {
virtual bool Stop() = 0;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_INTERFACE_THREAD_WRAPPER_H_
diff --git a/system_wrappers/source/atomic32_posix.cc b/system_wrappers/source/atomic32_posix.cc
index 38f36e09..614f3333 100644
--- a/system_wrappers/source/atomic32_posix.cc
+++ b/system_wrappers/source/atomic32_posix.cc
@@ -54,4 +54,4 @@ int32_t Atomic32::Value() const {
return value_;
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/condition_variable.cc b/system_wrappers/source/condition_variable.cc
index f36f7e24..577949d3 100644
--- a/system_wrappers/source/condition_variable.cc
+++ b/system_wrappers/source/condition_variable.cc
@@ -38,4 +38,4 @@ ConditionVariableWrapper* ConditionVariableWrapper::CreateConditionVariable() {
#endif
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/condition_variable_posix.cc b/system_wrappers/source/condition_variable_posix.cc
index 41e80234..846cd63b 100644
--- a/system_wrappers/source/condition_variable_posix.cc
+++ b/system_wrappers/source/condition_variable_posix.cc
@@ -129,4 +129,4 @@ void ConditionVariablePosix::WakeAll() {
pthread_cond_broadcast(&cond_);
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/condition_variable_posix.h b/system_wrappers/source/condition_variable_posix.h
index 53adcdbf..6e69746e 100644
--- a/system_wrappers/source/condition_variable_posix.h
+++ b/system_wrappers/source/condition_variable_posix.h
@@ -35,6 +35,6 @@ class ConditionVariablePosix : public ConditionVariableWrapper {
pthread_cond_t cond_;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_CONDITION_VARIABLE_POSIX_H_
diff --git a/system_wrappers/source/cpu_info.cc b/system_wrappers/source/cpu_info.cc
index 9e2628ab..c482d879 100644
--- a/system_wrappers/source/cpu_info.cc
+++ b/system_wrappers/source/cpu_info.cc
@@ -61,4 +61,4 @@ uint32_t CpuInfo::DetectNumberOfCores() {
return number_of_cores_;
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/critical_section.cc b/system_wrappers/source/critical_section.cc
index 1b4511d8..c5865887 100644
--- a/system_wrappers/source/critical_section.cc
+++ b/system_wrappers/source/critical_section.cc
@@ -25,4 +25,4 @@ CriticalSectionWrapper* CriticalSectionWrapper::CreateCriticalSection() {
#endif
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/critical_section_posix.cc b/system_wrappers/source/critical_section_posix.cc
index ac659400..36b9f137 100644
--- a/system_wrappers/source/critical_section_posix.cc
+++ b/system_wrappers/source/critical_section_posix.cc
@@ -39,4 +39,4 @@ CriticalSectionPosix::Leave() {
(void) pthread_mutex_unlock(&mutex_);
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/critical_section_posix.h b/system_wrappers/source/critical_section_posix.h
index f09aba07..6a0426c0 100644
--- a/system_wrappers/source/critical_section_posix.h
+++ b/system_wrappers/source/critical_section_posix.h
@@ -31,6 +31,6 @@ class CriticalSectionPosix : public CriticalSectionWrapper {
friend class ConditionVariablePosix;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_CRITICAL_SECTION_POSIX_H_
diff --git a/system_wrappers/source/critical_section_win.cc b/system_wrappers/source/critical_section_win.cc
index 7acb0076..b5149d1e 100644
--- a/system_wrappers/source/critical_section_win.cc
+++ b/system_wrappers/source/critical_section_win.cc
@@ -30,4 +30,4 @@ CriticalSectionWindows::Leave() {
LeaveCriticalSection(&crit);
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/critical_section_win.h b/system_wrappers/source/critical_section_win.h
index be4dd742..be237acc 100644
--- a/system_wrappers/source/critical_section_win.h
+++ b/system_wrappers/source/critical_section_win.h
@@ -33,6 +33,6 @@ class CriticalSectionWindows : public CriticalSectionWrapper {
friend class ConditionVariableNativeWin;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_CRITICAL_SECTION_WIN_H_
diff --git a/system_wrappers/source/event.cc b/system_wrappers/source/event.cc
index 18ac4f04..75571b55 100644
--- a/system_wrappers/source/event.cc
+++ b/system_wrappers/source/event.cc
@@ -30,4 +30,4 @@ EventWrapper* EventWrapper::Create() {
return EventPosix::Create();
#endif
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/event_posix.cc b/system_wrappers/source/event_posix.cc
index c3291892..1188bc8c 100644
--- a/system_wrappers/source/event_posix.cc
+++ b/system_wrappers/source/event_posix.cc
@@ -280,4 +280,4 @@ bool EventPosix::StopTimer() {
return true;
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/file_impl.cc b/system_wrappers/source/file_impl.cc
index c9bd8258..190f3995 100644
--- a/system_wrappers/source/file_impl.cc
+++ b/system_wrappers/source/file_impl.cc
@@ -248,4 +248,4 @@ int FileWrapperImpl::FlushImpl() {
return -1;
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/file_impl.h b/system_wrappers/source/file_impl.h
index c810b048..5dbbcfb0 100644
--- a/system_wrappers/source/file_impl.h
+++ b/system_wrappers/source/file_impl.h
@@ -59,6 +59,6 @@ class FileWrapperImpl : public FileWrapper {
char file_name_utf8_[kMaxFileNameSize];
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_FILE_IMPL_H_
diff --git a/system_wrappers/source/list_no_stl.cc b/system_wrappers/source/list_no_stl.cc
index b5f61371..5c9f5af0 100644
--- a/system_wrappers/source/list_no_stl.cc
+++ b/system_wrappers/source/list_no_stl.cc
@@ -238,4 +238,4 @@ void ListWrapper::PushFrontImpl(ListItem* item) {
size_++;
}
-} //namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/list_stl.cc b/system_wrappers/source/list_stl.cc
index 1dac0c9b..81b6f0cc 100644
--- a/system_wrappers/source/list_stl.cc
+++ b/system_wrappers/source/list_stl.cc
@@ -204,4 +204,4 @@ int ListWrapper::Erase(ListItem* item) {
return 0;
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/map.cc b/system_wrappers/source/map.cc
index aad6f5c2..63ec54fb 100644
--- a/system_wrappers/source/map.cc
+++ b/system_wrappers/source/map.cc
@@ -138,4 +138,4 @@ int MapWrapper::Erase(const int id) {
return -1;
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/map_no_stl.cc b/system_wrappers/source/map_no_stl.cc
index 572925bb..171483e1 100644
--- a/system_wrappers/source/map_no_stl.cc
+++ b/system_wrappers/source/map_no_stl.cc
@@ -177,4 +177,4 @@ int MapNoStl::Remove(MapNoStlItem* item) {
return 0;
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/map_no_stl.h b/system_wrappers/source/map_no_stl.h
index 9d8f5d88..23c559d5 100644
--- a/system_wrappers/source/map_no_stl.h
+++ b/system_wrappers/source/map_no_stl.h
@@ -65,6 +65,6 @@ class MapNoStl {
DISALLOW_COPY_AND_ASSIGN(MapNoStl);
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_MAP_NO_STL_H_
diff --git a/system_wrappers/source/set_thread_name_win.h b/system_wrappers/source/set_thread_name_win.h
index 76d18bf7..cca126f1 100644
--- a/system_wrappers/source/set_thread_name_win.h
+++ b/system_wrappers/source/set_thread_name_win.h
@@ -104,5 +104,5 @@ void SetThreadName(DWORD dwThreadID, LPCSTR szThreadName)
{
}
}
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_THREAD_WINDOWS_SET_NAME_H_
diff --git a/system_wrappers/source/sort.cc b/system_wrappers/source/sort.cc
index 8c774bb2..c3b61e01 100644
--- a/system_wrappers/source/sort.cc
+++ b/system_wrappers/source/sort.cc
@@ -483,4 +483,4 @@ int32_t KeySort(void* data, void* key, uint32_t num_of_elements,
#endif
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/thread.cc b/system_wrappers/source/thread.cc
index 2fe6a610..6f023f86 100644
--- a/system_wrappers/source/thread.cc
+++ b/system_wrappers/source/thread.cc
@@ -28,4 +28,4 @@ ThreadWrapper* ThreadWrapper::CreateThread(ThreadRunFunction func,
#endif
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/thread_posix.cc b/system_wrappers/source/thread_posix.cc
index b1b445f6..8a24ae58 100644
--- a/system_wrappers/source/thread_posix.cc
+++ b/system_wrappers/source/thread_posix.cc
@@ -355,4 +355,4 @@ void ThreadPosix::Run() {
}
}
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/thread_posix.h b/system_wrappers/source/thread_posix.h
index 67db496a..bacf908a 100644
--- a/system_wrappers/source/thread_posix.h
+++ b/system_wrappers/source/thread_posix.h
@@ -68,6 +68,6 @@ class ThreadPosix : public ThreadWrapper {
pthread_t thread_;
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_THREAD_POSIX_H_
diff --git a/system_wrappers/source/thread_win.cc b/system_wrappers/source/thread_win.cc
index 2e029e7e..c68ee1ad 100644
--- a/system_wrappers/source/thread_win.cc
+++ b/system_wrappers/source/thread_win.cc
@@ -195,4 +195,4 @@ void ThreadWindows::Run() {
critsect_stop_->Leave();
};
-} // namespace webrtc
+} // namespace webrtc
diff --git a/system_wrappers/source/thread_win.h b/system_wrappers/source/thread_win.h
index 2705f778..11226766 100644
--- a/system_wrappers/source/thread_win.h
+++ b/system_wrappers/source/thread_win.h
@@ -60,6 +60,6 @@ class ThreadWindows : public ThreadWrapper {
};
-} // namespace webrtc
+} // namespace webrtc
#endif // WEBRTC_SYSTEM_WRAPPERS_SOURCE_THREAD_WIN_H_