[Title] set passed origin data even though there is a duplicated website setting...
[profile/ivi/org.tizen.browser.git] / src / browser-window.h
index f09fbbe..73dc1c4 100755 (executable)
@@ -1,18 +1,20 @@
 /*
-  * Copyright 2012  Samsung Electronics Co., Ltd
-  *
-  * Licensed under the Flora License, Version 1.0 (the "License");
-  * you may not use this file except in compliance with the License.
-  * You may obtain a copy of the License at
-  *
-  *    http://www.tizenopensource.org/license
-  *
-  * Unless required by applicable law or agreed to in writing, software
-  * distributed under the License is distributed on an "AS IS" BASIS,
-  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-  * See the License for the specific language governing permissions and
-  * limitations under the License.
-  */
+ * Copyright 2012  Samsung Electronics Co., Ltd
+ *
+ * Licensed under the Flora License, Version 1.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *    http://www.tizenopensource.org/license
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ */
+
 
 #ifndef BROWSER_WINODW_H
 #define BROWSER_WINODW_H
@@ -30,16 +32,22 @@ public:
          * So The null check is necessary at every usage. */
        Evas_Object *m_ewk_view;
 
+       Evas_Object *m_ewk_view_layout;
        Evas_Object *m_portrait_snapshot_image;
+#if defined(HORIZONTAL_UI)
        Evas_Object *m_landscape_snapshot_image;
+#endif
 
        /* m_parent is a Browser_Window which invoke itself by javascript etc. */
        Browser_Window *m_parent;
        Evas_Object *m_favicon;
        Evas_Object *m_option_header_favicon;
+       Evas_Object *m_secure_icon;
+       Evas_Object *m_option_header_secure_icon;
        Eina_Bool m_created_by_user;
-       /* The url & title are only valid when the window is deleted
-         * because of unused case. (etc. low memory) */
+       Eina_Bool m_is_reader;
+       std::string m_reader_html;
+       std::string m_reader_base_url;
        std::string m_url;
        std::string m_title;
 };