| 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 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 SkColor color, | 370 SkColor color, |
| 371 const std::vector<content::ColorSuggestion>& suggestions) override; | 371 const std::vector<content::ColorSuggestion>& suggestions) override; |
| 372 void RunFileChooser(content::WebContents* tab, | 372 void RunFileChooser(content::WebContents* tab, |
| 373 const content::FileChooserParams& params) override; | 373 const content::FileChooserParams& params) override; |
| 374 bool IsPopupOrPanel(const content::WebContents* source) const override; | 374 bool IsPopupOrPanel(const content::WebContents* source) const override; |
| 375 void MoveContents(content::WebContents* source, | 375 void MoveContents(content::WebContents* source, |
| 376 const gfx::Rect& pos) override; | 376 const gfx::Rect& pos) override; |
| 377 void NavigationStateChanged(content::WebContents* source, | 377 void NavigationStateChanged(content::WebContents* source, |
| 378 content::InvalidateTypes changed_flags) override; | 378 content::InvalidateTypes changed_flags) override; |
| 379 void ToggleFullscreenModeForTab(content::WebContents* source, | 379 void ToggleFullscreenModeForTab(content::WebContents* source, |
| 380 const GURL& origin, |
| 380 bool enter_fullscreen) override; | 381 bool enter_fullscreen) override; |
| 381 bool IsFullscreenForTabOrPending( | 382 bool IsFullscreenForTabOrPending( |
| 382 const content::WebContents* source) const override; | 383 const content::WebContents* source) const override; |
| 383 void RequestMediaAccessPermission( | 384 void RequestMediaAccessPermission( |
| 384 content::WebContents* web_contents, | 385 content::WebContents* web_contents, |
| 385 const content::MediaStreamRequest& request, | 386 const content::MediaStreamRequest& request, |
| 386 const content::MediaResponseCallback& callback) override; | 387 const content::MediaResponseCallback& callback) override; |
| 387 bool CheckMediaAccessPermission(content::WebContents* web_contents, | 388 bool CheckMediaAccessPermission(content::WebContents* web_contents, |
| 388 const GURL& security_origin, | 389 const GURL& security_origin, |
| 389 content::MediaStreamType type) override; | 390 content::MediaStreamType type) override; |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 551 bool requested_alpha_enabled_; | 552 bool requested_alpha_enabled_; |
| 552 | 553 |
| 553 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; | 554 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; |
| 554 | 555 |
| 555 DISALLOW_COPY_AND_ASSIGN(AppWindow); | 556 DISALLOW_COPY_AND_ASSIGN(AppWindow); |
| 556 }; | 557 }; |
| 557 | 558 |
| 558 } // namespace extensions | 559 } // namespace extensions |
| 559 | 560 |
| 560 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ | 561 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ |
| OLD | NEW |