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

Side by Side Diff: chrome/browser/gtk/location_bar_view_gtk.cc

Issue 115470: Get rid of a couple NOTIMPLEMENTED()s. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host_view_gtk.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 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/gtk/location_bar_view_gtk.h" 5 #include "chrome/browser/gtk/location_bar_view_gtk.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "app/resource_bundle.h" 9 #include "app/resource_bundle.h"
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 void LocationBarViewGtk::FocusSearch() { 183 void LocationBarViewGtk::FocusSearch() {
184 location_entry_->SetUserText(L"?"); 184 location_entry_->SetUserText(L"?");
185 location_entry_->SetFocus(); 185 location_entry_->SetFocus();
186 } 186 }
187 187
188 void LocationBarViewGtk::UpdatePageActions() { 188 void LocationBarViewGtk::UpdatePageActions() {
189 // http://code.google.com/p/chromium/issues/detail?id=11973 189 // http://code.google.com/p/chromium/issues/detail?id=11973
190 } 190 }
191 191
192 void LocationBarViewGtk::SaveStateToContents(TabContents* contents) { 192 void LocationBarViewGtk::SaveStateToContents(TabContents* contents) {
193 NOTIMPLEMENTED(); 193 // http://crbug.com/9225
194 } 194 }
195 195
196 void LocationBarViewGtk::Revert() { 196 void LocationBarViewGtk::Revert() {
197 location_entry_->RevertAll(); 197 location_entry_->RevertAll();
198 } 198 }
199 199
200 gboolean LocationBarViewGtk::HandleExpose(GtkWidget* widget, 200 gboolean LocationBarViewGtk::HandleExpose(GtkWidget* widget,
201 GdkEventExpose* event) { 201 GdkEventExpose* event) {
202 GdkDrawable* drawable = GDK_DRAWABLE(event->window); 202 GdkDrawable* drawable = GDK_DRAWABLE(event->window);
203 GdkGC* gc = gdk_gc_new(drawable); 203 GdkGC* gc = gdk_gc_new(drawable);
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
285 break; 285 break;
286 default: 286 default:
287 NOTREACHED(); 287 NOTREACHED();
288 security_icon_ = NULL; 288 security_icon_ = NULL;
289 break; 289 break;
290 } 290 }
291 291
292 // Make sure there is room for the icon. 292 // Make sure there is room for the icon.
293 UpdateAlignmentPadding(); 293 UpdateAlignmentPadding();
294 } 294 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_widget_host_view_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698