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

Side by Side Diff: chrome/browser/ui/gtk/apps/native_app_window_gtk.cc

Issue 158643002: Add option to install an ephemeral app to the Windows jump list (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 #include "chrome/browser/ui/gtk/apps/native_app_window_gtk.h" 5 #include "chrome/browser/ui/gtk/apps/native_app_window_gtk.h"
6 6
7 #include <gdk/gdkx.h> 7 #include <gdk/gdkx.h>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/message_loop/message_pump_gtk.h" 10 #include "base/message_loop/message_pump_gtk.h"
(...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 hints_mask |= GDK_HINT_MAX_SIZE; 711 hints_mask |= GDK_HINT_MAX_SIZE;
712 } 712 }
713 if (hints_mask) { 713 if (hints_mask) {
714 gtk_window_set_geometry_hints( 714 gtk_window_set_geometry_hints(
715 window_, 715 window_,
716 GTK_WIDGET(window_), 716 GTK_WIDGET(window_),
717 &hints, 717 &hints,
718 static_cast<GdkWindowHints>(hints_mask)); 718 static_cast<GdkWindowHints>(hints_mask));
719 } 719 }
720 } 720 }
721
722 void NativeAppWindowGtk::UpdateAppMenu() {}
benwells 2014/02/10 21:31:20 Nit: add NOTIMPLEMENTED
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698