| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 5 #ifndef EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
| 6 #define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 6 #define EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 bool IsPopupOrPanel(const content::WebContents* source) const override; | 380 bool IsPopupOrPanel(const content::WebContents* source) const override; |
| 381 void MoveContents(content::WebContents* source, | 381 void MoveContents(content::WebContents* source, |
| 382 const gfx::Rect& pos) override; | 382 const gfx::Rect& pos) override; |
| 383 void NavigationStateChanged(content::WebContents* source, | 383 void NavigationStateChanged(content::WebContents* source, |
| 384 content::InvalidateTypes changed_flags) override; | 384 content::InvalidateTypes changed_flags) override; |
| 385 void EnterFullscreenModeForTab(content::WebContents* source, | 385 void EnterFullscreenModeForTab(content::WebContents* source, |
| 386 const GURL& origin) override; | 386 const GURL& origin) override; |
| 387 void ExitFullscreenModeForTab(content::WebContents* source) override; | 387 void ExitFullscreenModeForTab(content::WebContents* source) override; |
| 388 bool IsFullscreenForTabOrPending( | 388 bool IsFullscreenForTabOrPending( |
| 389 const content::WebContents* source) const override; | 389 const content::WebContents* source) const override; |
| 390 blink::WebDisplayMode GetDisplayMode( |
| 391 const content::WebContents* source) const override; |
| 390 void RequestMediaAccessPermission( | 392 void RequestMediaAccessPermission( |
| 391 content::WebContents* web_contents, | 393 content::WebContents* web_contents, |
| 392 const content::MediaStreamRequest& request, | 394 const content::MediaStreamRequest& request, |
| 393 const content::MediaResponseCallback& callback) override; | 395 const content::MediaResponseCallback& callback) override; |
| 394 bool CheckMediaAccessPermission(content::WebContents* web_contents, | 396 bool CheckMediaAccessPermission(content::WebContents* web_contents, |
| 395 const GURL& security_origin, | 397 const GURL& security_origin, |
| 396 content::MediaStreamType type) override; | 398 content::MediaStreamType type) override; |
| 397 content::WebContents* OpenURLFromTab( | 399 content::WebContents* OpenURLFromTab( |
| 398 content::WebContents* source, | 400 content::WebContents* source, |
| 399 const content::OpenURLParams& params) override; | 401 const content::OpenURLParams& params) override; |
| (...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 569 bool is_ime_window_; | 571 bool is_ime_window_; |
| 570 | 572 |
| 571 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; | 573 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; |
| 572 | 574 |
| 573 DISALLOW_COPY_AND_ASSIGN(AppWindow); | 575 DISALLOW_COPY_AND_ASSIGN(AppWindow); |
| 574 }; | 576 }; |
| 575 | 577 |
| 576 } // namespace extensions | 578 } // namespace extensions |
| 577 | 579 |
| 578 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 580 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
| OLD | NEW |