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

Side by Side Diff: Source/devtools/front_end/ui/SearchableView.js

Issue 714423005: DevTools: move front-end files from components to ui. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: review comment addressed Created 6 years, 1 month 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 | « Source/devtools/front_end/ui/Panel.js ('k') | Source/devtools/front_end/ui/Section.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com). 3 * Copyright (C) 2007 Matt Lilek (pewtermoose@gmail.com).
4 * Copyright (C) 2009 Joseph Pecoraro 4 * Copyright (C) 2009 Joseph Pecoraro
5 * Copyright (C) 2011 Google Inc. All rights reserved. 5 * Copyright (C) 2011 Google Inc. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 10 *
(...skipping 689 matching lines...) Expand 10 before | Expand all | Expand 10 after
700 * @param {string} query 700 * @param {string} query
701 * @param {boolean} caseSensitive 701 * @param {boolean} caseSensitive
702 * @param {boolean} isRegex 702 * @param {boolean} isRegex
703 */ 703 */
704 WebInspector.SearchableView.SearchConfig = function(query, caseSensitive, isRege x) 704 WebInspector.SearchableView.SearchConfig = function(query, caseSensitive, isRege x)
705 { 705 {
706 this.query = query; 706 this.query = query;
707 this.caseSensitive = caseSensitive; 707 this.caseSensitive = caseSensitive;
708 this.isRegex = isRegex; 708 this.isRegex = isRegex;
709 } 709 }
OLDNEW
« no previous file with comments | « Source/devtools/front_end/ui/Panel.js ('k') | Source/devtools/front_end/ui/Section.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698