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

Side by Side Diff: extensions/browser/app_window/app_window.h

Issue 964403003: Make it possible to set the display mode from Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 unified diff | Download patch
OLDNEW
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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 EnterFullscreenModeForTab(content::WebContents* source, 379 void EnterFullscreenModeForTab(content::WebContents* source,
380 const GURL& origin) override; 380 const GURL& origin) override;
381 void ExitFullscreenModeForTab(content::WebContents* source) override; 381 void ExitFullscreenModeForTab(content::WebContents* source) override;
382 bool IsFullscreenForTabOrPending( 382 bool IsFullscreenForTabOrPending(
383 const content::WebContents* source) const override; 383 const content::WebContents* source) const override;
384 blink::WebDisplayMode GetDisplayMode(
385 const content::WebContents* source) const override;
384 void RequestMediaAccessPermission( 386 void RequestMediaAccessPermission(
385 content::WebContents* web_contents, 387 content::WebContents* web_contents,
386 const content::MediaStreamRequest& request, 388 const content::MediaStreamRequest& request,
387 const content::MediaResponseCallback& callback) override; 389 const content::MediaResponseCallback& callback) override;
388 bool CheckMediaAccessPermission(content::WebContents* web_contents, 390 bool CheckMediaAccessPermission(content::WebContents* web_contents,
389 const GURL& security_origin, 391 const GURL& security_origin,
390 content::MediaStreamType type) override; 392 content::MediaStreamType type) override;
391 content::WebContents* OpenURLFromTab( 393 content::WebContents* OpenURLFromTab(
392 content::WebContents* source, 394 content::WebContents* source,
393 const content::OpenURLParams& params) override; 395 const content::OpenURLParams& params) override;
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
556 bool requested_alpha_enabled_; 558 bool requested_alpha_enabled_;
557 559
558 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_; 560 base::WeakPtrFactory<AppWindow> image_loader_ptr_factory_;
559 561
560 DISALLOW_COPY_AND_ASSIGN(AppWindow); 562 DISALLOW_COPY_AND_ASSIGN(AppWindow);
561 }; 563 };
562 564
563 } // namespace extensions 565 } // namespace extensions
564 566
565 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_ 567 #endif // EXTENSIONS_BROWSER_APP_WINDOW_APP_WINDOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698