Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1140)

Unified Diff: Source/core/page/BarProp.cpp

Issue 14773013: Rename BarInfo to BarProp and remove [NoInterfaceObject] attribute (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/page/BarProp.h ('k') | Source/core/page/BarProp.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/page/BarProp.cpp
diff --git a/Source/core/page/BarInfo.cpp b/Source/core/page/BarProp.cpp
similarity index 93%
rename from Source/core/page/BarInfo.cpp
rename to Source/core/page/BarProp.cpp
index 06796417b5294b59de9c29b98c7d99d6f072e232..aeb9e6f24252cb5c7aec3f4cfc5a02e088a04a40 100644
--- a/Source/core/page/BarInfo.cpp
+++ b/Source/core/page/BarProp.cpp
@@ -6,13 +6,13 @@
* are met:
*
* 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
+ * notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
+ * documentation and/or other materials provided with the distribution.
* 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
* its contributors may be used to endorse or promote products derived
- * from this software without specific prior written permission.
+ * from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
@@ -27,7 +27,7 @@
*/
#include "config.h"
-#include "core/page/BarInfo.h"
+#include "core/page/BarProp.h"
#include "core/page/Chrome.h"
#include "core/page/Frame.h"
@@ -35,19 +35,19 @@
namespace WebCore {
-BarInfo::BarInfo(Frame* frame, Type type)
+BarProp::BarProp(Frame* frame, Type type)
: DOMWindowProperty(frame)
, m_type(type)
{
ScriptWrappable::init(this);
}
-BarInfo::Type BarInfo::type() const
+BarProp::Type BarProp::type() const
{
return m_type;
}
-bool BarInfo::visible() const
+bool BarProp::visible() const
{
if (!m_frame)
return false;
« no previous file with comments | « Source/core/page/BarProp.h ('k') | Source/core/page/BarProp.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698