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

Side by Side Diff: chrome/browser/ui/browser_window.h

Issue 1927203003: Add support for X11 workspaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove newline Created 4 years, 7 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 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 CHROME_BROWSER_UI_BROWSER_WINDOW_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_WINDOW_H_
6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_ 6 #define CHROME_BROWSER_UI_BROWSER_WINDOW_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "chrome/browser/lifetime/browser_close_manager.h" 10 #include "chrome/browser/lifetime/browser_close_manager.h"
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 372
373 // Returns object implementing ExclusiveAccessContext interface. 373 // Returns object implementing ExclusiveAccessContext interface.
374 virtual ExclusiveAccessContext* GetExclusiveAccessContext() = 0; 374 virtual ExclusiveAccessContext* GetExclusiveAccessContext() = 0;
375 375
376 // Shows the IME warning bubble. 376 // Shows the IME warning bubble.
377 virtual void ShowImeWarningBubble( 377 virtual void ShowImeWarningBubble(
378 const extensions::Extension* extension, 378 const extensions::Extension* extension,
379 const base::Callback<void(ImeWarningBubblePermissionStatus status)>& 379 const base::Callback<void(ImeWarningBubblePermissionStatus status)>&
380 callback) = 0; 380 callback) = 0;
381 381
382 virtual std::string GetWorkspace() const = 0;
sky 2016/05/03 17:40:52 Add description.
Tom (Use chromium acct) 2016/05/03 19:38:39 Done.
383
382 protected: 384 protected:
383 friend class BrowserCloseManager; 385 friend class BrowserCloseManager;
384 friend class BrowserView; 386 friend class BrowserView;
385 virtual void DestroyBrowser() = 0; 387 virtual void DestroyBrowser() = 0;
386 }; 388 };
387 389
388 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_ 390 #endif // CHROME_BROWSER_UI_BROWSER_WINDOW_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698