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

Side by Side Diff: third_party/undoview/undo_view.h

Issue 9288024: Fix license info for undoview (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | Annotate | Revision Log
« no previous file with comments | « third_party/undoview/undo_manager.h ('k') | no next file » | 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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 // Boilerplate code was generated by http://burtonini.com/cgi/gobject.py 5 // Boilerplate code was generated by http://burtonini.com/cgi/gobject.py
6 6
7 #ifndef CHROME_BROWSER_AUTOCOMPLETE_UNDO_VIEW_H_ 7 #ifndef UNDOVIEW_UNDO_VIEW_H_
8 #define CHROME_BROWSER_AUTOCOMPLETE_UNDO_VIEW_H_ 8 #define UNDOVIEW_UNDO_VIEW_H_
9 9
10 #include <gtk/gtk.h> 10 #include <gtk/gtk.h>
11 #include "undo_manager.h" 11 #include "undo_manager.h"
12 12
13 G_BEGIN_DECLS 13 G_BEGIN_DECLS
14 14
15 #define GTK_TYPE_UNDO_VIEW gtk_undo_view_get_type() 15 #define GTK_TYPE_UNDO_VIEW gtk_undo_view_get_type()
16 16
17 #define GTK_UNDO_VIEW(obj) \ 17 #define GTK_UNDO_VIEW(obj) \
18 (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_UNDO_VIEW, GtkUndoView)) 18 (G_TYPE_CHECK_INSTANCE_CAST((obj), GTK_TYPE_UNDO_VIEW, GtkUndoView))
(...skipping 21 matching lines...) Expand all
40 void (*undo)(GtkUndoView *); 40 void (*undo)(GtkUndoView *);
41 void (*redo)(GtkUndoView *); 41 void (*redo)(GtkUndoView *);
42 } GtkUndoViewClass; 42 } GtkUndoViewClass;
43 43
44 GType gtk_undo_view_get_type(void); 44 GType gtk_undo_view_get_type(void);
45 45
46 GtkWidget* gtk_undo_view_new(GtkTextBuffer *buffer); 46 GtkWidget* gtk_undo_view_new(GtkTextBuffer *buffer);
47 47
48 G_END_DECLS 48 G_END_DECLS
49 49
50 #endif // CHROME_BROWSER_AUTOCOMPLETE_UNDO_VIEW_H_ 50 #endif // UNDOVIEW_UNDO_VIEW_H_
51
OLDNEW
« no previous file with comments | « third_party/undoview/undo_manager.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698