Apply clang-format to all C, C++ and ObjC files (issue #2171)

This commit is contained in:
Marshall Greenblatt
2017-05-17 11:29:28 +02:00
parent a566549e04
commit 31d9407ee2
1331 changed files with 33014 additions and 32258 deletions

View File

@ -51,25 +51,25 @@ class CefWebPluginInfo : public virtual CefBaseRefCounted {
// Returns the plugin name (i.e. Flash).
///
/*--cef()--*/
virtual CefString GetName() =0;
virtual CefString GetName() = 0;
///
// Returns the plugin file path (DLL/bundle/library).
///
/*--cef()--*/
virtual CefString GetPath() =0;
virtual CefString GetPath() = 0;
///
// Returns the version of the plugin (may be OS-specific).
///
/*--cef()--*/
virtual CefString GetVersion() =0;
virtual CefString GetVersion() = 0;
///
// Returns a description of the plugin from the version information.
///
/*--cef()--*/
virtual CefString GetDescription() =0;
virtual CefString GetDescription() = 0;
};
///
@ -86,7 +86,9 @@ class CefWebPluginInfoVisitor : public virtual CefBaseRefCounted {
// no plugins are found.
///
/*--cef()--*/
virtual bool Visit(CefRefPtr<CefWebPluginInfo> info, int count, int total) =0;
virtual bool Visit(CefRefPtr<CefWebPluginInfo> info,
int count,
int total) = 0;
};
///
@ -132,8 +134,7 @@ class CefWebPluginUnstableCallback : public virtual CefBaseRefCounted {
// seconds.
///
/*--cef()--*/
virtual void IsUnstable(const CefString& path,
bool unstable) =0;
virtual void IsUnstable(const CefString& path, bool unstable) = 0;
};
///
@ -160,7 +161,7 @@ class CefRegisterCdmCallback : public virtual CefBaseRefCounted {
///
/*--cef(optional_param=error_message)--*/
virtual void OnCdmRegistrationComplete(cef_cdm_registration_error_t result,
const CefString& error_message) =0;
const CefString& error_message) = 0;
};
///