OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
573 bool is_main_frame) override; | 573 bool is_main_frame) override; |
574 virtual int CreateOpenerRenderViewsForRenderManager( | 574 virtual int CreateOpenerRenderViewsForRenderManager( |
575 SiteInstance* instance) override; | 575 SiteInstance* instance) override; |
576 virtual NavigationControllerImpl& | 576 virtual NavigationControllerImpl& |
577 GetControllerForRenderManager() override; | 577 GetControllerForRenderManager() override; |
578 virtual WebUIImpl* CreateWebUIForRenderManager(const GURL& url) override; | 578 virtual WebUIImpl* CreateWebUIForRenderManager(const GURL& url) override; |
579 virtual NavigationEntry* | 579 virtual NavigationEntry* |
580 GetLastCommittedNavigationEntryForRenderManager() override; | 580 GetLastCommittedNavigationEntryForRenderManager() override; |
581 virtual bool FocusLocationBarByDefault() override; | 581 virtual bool FocusLocationBarByDefault() override; |
582 virtual void SetFocusToLocationBar(bool select_all) override; | 582 virtual void SetFocusToLocationBar(bool select_all) override; |
583 virtual void CreateViewAndSetSizeForRVH(RenderViewHost* rvh) override; | |
584 virtual bool IsHidden() override; | 583 virtual bool IsHidden() override; |
585 | 584 |
586 // NotificationObserver ------------------------------------------------------ | 585 // NotificationObserver ------------------------------------------------------ |
587 | 586 |
588 virtual void Observe(int type, | 587 virtual void Observe(int type, |
589 const NotificationSource& source, | 588 const NotificationSource& source, |
590 const NotificationDetails& details) override; | 589 const NotificationDetails& details) override; |
591 | 590 |
592 // NavigationControllerDelegate ---------------------------------------------- | 591 // NavigationControllerDelegate ---------------------------------------------- |
593 | 592 |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1243 scoped_ptr<WebContentsAudioMuter> audio_muter_; | 1242 scoped_ptr<WebContentsAudioMuter> audio_muter_; |
1244 | 1243 |
1245 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; | 1244 base::WeakPtrFactory<WebContentsImpl> loading_weak_factory_; |
1246 | 1245 |
1247 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1246 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1248 }; | 1247 }; |
1249 | 1248 |
1250 } // namespace content | 1249 } // namespace content |
1251 | 1250 |
1252 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1251 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |