summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@digia.com>2013-08-07 18:37:49 +0200
committerMichael Bruning <michael.bruning@digia.com>2013-08-07 18:56:09 +0200
commitcc5368917662e90156eaeafc5ac7e2803d941160 (patch)
treed2fb27dbe3dc6b846ab99433739e02d3b5b33da6 /lib
parentcfe34ead7a5e374b51f2000a7675096a6ba936c0 (diff)
Fix some style inconsistencies in the header file.
Changed the header #defines to UPPERCASE_CLASS_NAME_H. Change-Id: I49dec91d7a97808c1b9618df6d985939fd84babb Reviewed-by: Jocelyn Turcotte <jocelyn.turcotte@digia.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/backing_store_qt.h6
-rw-r--r--lib/browser_context_qt.h6
-rw-r--r--lib/content_browser_client_qt.h6
-rw-r--r--lib/render_widget_host_view_qt.h6
-rw-r--r--lib/render_widget_host_view_qt_delegate.h2
-rw-r--r--lib/resource_context_qt.h8
-rw-r--r--lib/web_contents_delegate_qt.h6
-rw-r--r--lib/web_contents_view_qt.h6
-rw-r--r--lib/web_engine_context.h2
-rw-r--r--lib/web_event_factory.h2
10 files changed, 25 insertions, 25 deletions
diff --git a/lib/backing_store_qt.h b/lib/backing_store_qt.h
index d2fa52f38..75b255f1d 100644
--- a/lib/backing_store_qt.h
+++ b/lib/backing_store_qt.h
@@ -39,8 +39,8 @@
**
****************************************************************************/
-#ifndef CONTENT_BROWSER_RENDERER_HOST_BACKING_STORE_QT_H_
-#define CONTENT_BROWSER_RENDERER_HOST_BACKING_STORE_QT_H_
+#ifndef BACKING_STORE_QT_H
+#define BACKING_STORE_QT_H
#include "content/browser/renderer_host/backing_store.h"
@@ -66,4 +66,4 @@ private:
QPixmap m_pixelBuffer;
};
-#endif
+#endif // BACKING_STORE_QT_H
diff --git a/lib/browser_context_qt.h b/lib/browser_context_qt.h
index 65a8f998b..e79632ef3 100644
--- a/lib/browser_context_qt.h
+++ b/lib/browser_context_qt.h
@@ -39,8 +39,8 @@
**
****************************************************************************/
-#ifndef BROWSER_CONTEXT_QT
-#define BROWSER_CONTEXT_QT
+#ifndef BROWSER_CONTEXT_QT_H
+#define BROWSER_CONTEXT_QT_H
#include "content/public/browser/browser_context.h"
@@ -141,4 +141,4 @@ private:
DISALLOW_COPY_AND_ASSIGN(BrowserContextQt);
};
-#endif //BROWSER_CONTEXT_QT
+#endif // BROWSER_CONTEXT_QT_H
diff --git a/lib/content_browser_client_qt.h b/lib/content_browser_client_qt.h
index a1e897e75..6ba2b7c4d 100644
--- a/lib/content_browser_client_qt.h
+++ b/lib/content_browser_client_qt.h
@@ -39,8 +39,8 @@
**
****************************************************************************/
-#ifndef CONTENT_BROWSER_CLIENT_QT
-#define CONTENT_BROWSER_CLIENT_QT
+#ifndef CONTENT_BROWSER_CLIENT_QT_H
+#define CONTENT_BROWSER_CLIENT_QT_H
#include "content/public/browser/content_browser_client.h"
#include <QtCore/qcompilerdetection.h> // Needed for Q_DECL_OVERRIDE
@@ -81,4 +81,4 @@ private:
};
-#endif // CONTENT_BROWSER_CLIENT_QT
+#endif // CONTENT_BROWSER_CLIENT_QT_H
diff --git a/lib/render_widget_host_view_qt.h b/lib/render_widget_host_view_qt.h
index 0fe3fc48e..d580a00ca 100644
--- a/lib/render_widget_host_view_qt.h
+++ b/lib/render_widget_host_view_qt.h
@@ -39,8 +39,8 @@
**
****************************************************************************/
-#ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_QT_H_
-#define CONTENT_BROWSER_RENDERER_HOST_RENDER_WIDGET_HOST_VIEW_QT_H_
+#ifndef RENDER_WIDGET_HOST_VIEW_QT_H
+#define RENDER_WIDGET_HOST_VIEW_QT_H
#include "shared/shared_globals.h"
@@ -172,4 +172,4 @@ private:
scoped_ptr<RenderWidgetHostViewQtDelegate> m_delegate;
};
-#endif
+#endif // RENDER_WIDGET_HOST_VIEW_QT_H
diff --git a/lib/render_widget_host_view_qt_delegate.h b/lib/render_widget_host_view_qt_delegate.h
index 2834c224f..d3a58293f 100644
--- a/lib/render_widget_host_view_qt_delegate.h
+++ b/lib/render_widget_host_view_qt_delegate.h
@@ -84,4 +84,4 @@ private:
BackingStoreQt *m_backingStore;
};
-#endif
+#endif // RENDER_WIDGET_HOST_VIEW_QT_DELEGATE_H
diff --git a/lib/resource_context_qt.h b/lib/resource_context_qt.h
index b6800b422..fce612960 100644
--- a/lib/resource_context_qt.h
+++ b/lib/resource_context_qt.h
@@ -39,10 +39,10 @@
**
****************************************************************************/
-#include "content/public/browser/resource_context.h"
+#ifndef RESOURCE_CONTEXT_QT_H
+#define RESOURCE_CONTEXT_QT_H
-#ifndef RESOURCE_CONTEXT_QT
-#define RESOURCE_CONTEXT_QT
+#include "content/public/browser/resource_context.h"
namespace net {
class URLRequestContextGetter;
@@ -71,4 +71,4 @@ private:
DISALLOW_COPY_AND_ASSIGN(ResourceContextQt);
};
-#endif //RESOURCE_CONTEXT_QT
+#endif // RESOURCE_CONTEXT_QT_H
diff --git a/lib/web_contents_delegate_qt.h b/lib/web_contents_delegate_qt.h
index 826230c91..e5ff9173d 100644
--- a/lib/web_contents_delegate_qt.h
+++ b/lib/web_contents_delegate_qt.h
@@ -39,8 +39,8 @@
**
****************************************************************************/
-#ifndef WEB_CONTENTS_DELEGATE_QT
-#define WEB_CONTENTS_DELEGATE_QT
+#ifndef WEB_CONTENTS_DELEGATE_QT_H
+#define WEB_CONTENTS_DELEGATE_QT_H
#include "content/public/browser/web_contents_delegate.h"
#include "content/public/browser/web_contents_observer.h"
@@ -74,4 +74,4 @@ private:
friend class WebContentsAdapter;
};
-#endif
+#endif // WEB_CONTENTS_DELEGATE_QT_H
diff --git a/lib/web_contents_view_qt.h b/lib/web_contents_view_qt.h
index 0eb0cb086..3723a8786 100644
--- a/lib/web_contents_view_qt.h
+++ b/lib/web_contents_view_qt.h
@@ -39,8 +39,8 @@
**
****************************************************************************/
-#ifndef WEB_CONTENTS_VIEW_QT_
-#define WEB_CONTENTS_VIEW_QT_
+#ifndef WEB_CONTENTS_VIEW_QT_H
+#define WEB_CONTENTS_VIEW_QT_H
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/render_view_host.h"
@@ -117,4 +117,4 @@ private:
RenderWidgetHostViewQtDelegate* m_viewDelegate;
};
-#endif
+#endif // WEB_CONTENTS_VIEW_QT_H
diff --git a/lib/web_engine_context.h b/lib/web_engine_context.h
index 2b349b29b..e0624afa1 100644
--- a/lib/web_engine_context.h
+++ b/lib/web_engine_context.h
@@ -71,4 +71,4 @@ private:
scoped_ptr<content::BrowserMainRunner> m_browserRunner;
};
-#endif
+#endif // WEB_ENGINE_CONTEXT_H
diff --git a/lib/web_event_factory.h b/lib/web_event_factory.h
index c2bb5f718..ab7981535 100644
--- a/lib/web_event_factory.h
+++ b/lib/web_event_factory.h
@@ -60,4 +60,4 @@ public:
};
-#endif
+#endif // WEB_EVENT_FACTORY_H